docs: update Netlify url config option in deployment instructions (#6019)

Netlify now provides `*.netlify.app` subdomains instead of `*.netlify.com` for project sites. Redirects still work, so the current config option isn't wrong but it's a good idea to keep the docs up to date.
This commit is contained in:
Rey 2021-11-27 00:34:32 -05:00 committed by GitHub
parent 43f13474bc
commit 78537aab2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -496,7 +496,7 @@ To deploy your Docusaurus 2 sites to [Netlify](https://www.netlify.com/), first
```js {2-3} title="docusaurus.config.js"
module.exports = {
url: 'https://docusaurus-2.netlify.com', // Url to your site with no trailing slash
url: 'https://docusaurus-2.netlify.app', // Url to your site with no trailing slash
baseUrl: '/', // Base directory of your site relative to your repo
// ...
};