From 78537aab2ae46f004932f02d6d5b131ef30fcef3 Mon Sep 17 00:00:00 2001 From: Rey Date: Sat, 27 Nov 2021 00:34:32 -0500 Subject: [PATCH] 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. --- website/docs/deployment.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/deployment.mdx b/website/docs/deployment.mdx index 93fd51f7ce..eedbc6258e 100644 --- a/website/docs/deployment.mdx +++ b/website/docs/deployment.mdx @@ -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 // ... };