refactor(v2): various fixes (#3587)

* refactor(v2): various fixes

* Test
This commit is contained in:
Alexey Pyltsyn 2020-10-16 11:54:23 +03:00 committed by GitHub
parent 67136a77b8
commit bfefc46436
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 27 additions and 15 deletions

View file

@ -84,13 +84,13 @@ module.exports = {
- Type: `boolean`
This option adds `<meta name="robots" content="noindex">` in pages, to tell search engines to avoid indexing your site (more information [here](https://moz.com/learn/seo/robots-meta-directives)).
This option adds `<meta name="robots" content="noindex, nofollow">` in pages, to tell search engines to avoid indexing your site (more information [here](https://moz.com/learn/seo/robots-meta-directives)).
Example:
```js title="docusaurus.config.js"
module.exports = {
noIndex: true, // Defaults to false
noIndex: true, // Defaults to `false`
};
```