mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-29 18:27:56 +02:00
* docs(v2): update plugins, presets and themes docs * ideal image plugin * proof reading * Merge master
48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
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', 'design-principles', 'contributing'],
|
|
'Getting Started': ['installation', 'configuration'],
|
|
Guides: [
|
|
'creating-pages',
|
|
'styling-layout',
|
|
'static-assets',
|
|
{
|
|
type: 'category',
|
|
label: 'Docs',
|
|
items: ['markdown-features', 'sidebar'],
|
|
},
|
|
'blog',
|
|
'analytics',
|
|
'seo',
|
|
'search',
|
|
'deployment',
|
|
'migrating-from-v1-to-v2',
|
|
],
|
|
'Advanced Guides': [
|
|
{
|
|
type: 'category',
|
|
label: 'Plugins',
|
|
items: ['using-plugins', 'advanced-plugins'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Themes',
|
|
items: ['using-themes', 'advanced-themes'],
|
|
},
|
|
'presets',
|
|
],
|
|
'API Reference': [
|
|
'cli',
|
|
'docusaurus-core',
|
|
'docusaurus.config.js',
|
|
'lifecycle-apis',
|
|
],
|
|
},
|
|
};
|