mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-30 02:37:59 +02:00
* docs(v2): SEO * docs(v2): add section on customized SEO * remove unnecessary comment * docs(v2): separate SEO doc and fix typos
45 lines
1,000 B
JavaScript
45 lines
1,000 B
JavaScript
/*
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
module.exports = {
|
|
docs: {
|
|
Docusaurus: [
|
|
'introduction',
|
|
/*'motivation', */ 'design-principles',
|
|
'contributing',
|
|
],
|
|
'Getting Started': ['installation', 'configuration'],
|
|
Guides: [
|
|
'creating-pages',
|
|
'styling-layout',
|
|
'static-assets',
|
|
{
|
|
type: 'category',
|
|
label: 'Docs',
|
|
items: ['markdown-features', 'sidebar'],
|
|
},
|
|
'blog',
|
|
'seo',
|
|
// 'reaching-users', // add back analytics and search
|
|
'using-plugins',
|
|
'using-themes',
|
|
'deployment',
|
|
],
|
|
'Advanced Guides': [
|
|
'advanced-plugins',
|
|
'advanced-themes',
|
|
'advanced-presets',
|
|
],
|
|
'API Reference': [
|
|
'cli',
|
|
'docusaurus-core',
|
|
'docusaurus.config.js',
|
|
'plugins-api',
|
|
'themes-api',
|
|
],
|
|
},
|
|
};
|