2019-07-08 02:14:49 -04:00
|
|
|
/*
|
2020-02-25 10:12:28 -05:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2019-04-28 23:20:24 -04:00
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
2020-05-28 01:17:19 -04:00
|
|
|
docs: [
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Docusaurus',
|
|
|
|
|
items: ['introduction', 'design-principles', 'contributing'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Getting Started',
|
|
|
|
|
collapsed: false,
|
2020-06-26 06:09:21 -04:00
|
|
|
items: ['installation', 'configuration', 'typescript-support'],
|
2020-05-28 01:17:19 -04:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Guides',
|
|
|
|
|
items: [
|
2020-07-31 15:14:49 -04:00
|
|
|
'guides/creating-pages',
|
2020-05-28 01:17:19 -04:00
|
|
|
'styling-layout',
|
|
|
|
|
'static-assets',
|
|
|
|
|
{
|
|
|
|
|
Docs: ['docs-introduction', 'markdown-features', 'versioning'],
|
|
|
|
|
},
|
|
|
|
|
'blog',
|
|
|
|
|
'search',
|
|
|
|
|
'deployment',
|
2020-07-24 09:15:26 -04:00
|
|
|
'guides/migrating-from-v1-to-v2',
|
2020-05-28 01:17:19 -04:00
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'Advanced Guides',
|
|
|
|
|
items: ['using-plugins', 'using-themes', 'presets'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'category',
|
|
|
|
|
label: 'API Reference',
|
|
|
|
|
items: [
|
|
|
|
|
'cli',
|
|
|
|
|
'docusaurus-core',
|
2020-07-31 15:14:49 -04:00
|
|
|
'api/docusaurus.config.js',
|
2020-05-28 01:17:19 -04:00
|
|
|
'lifecycle-apis',
|
|
|
|
|
'theme-classic',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
2019-04-28 23:20:24 -04:00
|
|
|
};
|