diff --git a/website/docs/deployment.md b/website/docs/deployment.md index 2f2c2e7b9a..ae28923f24 100644 --- a/website/docs/deployment.md +++ b/website/docs/deployment.md @@ -137,7 +137,9 @@ If you did not configure these build options, you may still go to "Site settings Once properly configured with the above options, your site should deploy and automatically redeploy upon merging to your deploy branch, which defaults to `master`. :::important + Make sure to disable Netlify setting `Pretty URLs` to prevent lowercased URLs, unneccessary redirects and 404 errors. + ::: ## Deploying to Render diff --git a/website/docs/using-plugins.md b/website/docs/using-plugins.md index b93c375bb8..57aa70b2c9 100644 --- a/website/docs/using-plugins.md +++ b/website/docs/using-plugins.md @@ -172,7 +172,9 @@ module.exports = { /** * Remark and Rehype plugins passed to MDX */ - remarkPlugins: [/* require('remark-math') */], + remarkPlugins: [ + /* require('remark-math') */ + ], rehypePlugins: [], /** * Truncate marker, can be a regex or string. @@ -246,7 +248,9 @@ module.exports = { /** * Remark and Rehype plugins passed to MDX */ - remarkPlugins: [/* require('remark-math') */], + remarkPlugins: [ + /* require('remark-math') */ + ], rehypePlugins: [], /** * Whether to display the author who last updated the doc.