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 = {
|
|
|
|
|
docs: {
|
2020-04-05 13:10:22 -04:00
|
|
|
Docusaurus: ['introduction', 'design-principles', 'contributing'],
|
2019-07-08 02:14:49 -04:00
|
|
|
'Getting Started': ['installation', 'configuration'],
|
2019-04-28 23:20:24 -04:00
|
|
|
Guides: [
|
2019-07-08 02:14:49 -04:00
|
|
|
'creating-pages',
|
2019-04-28 23:20:24 -04:00
|
|
|
'styling-layout',
|
2019-07-13 22:21:39 -04:00
|
|
|
'static-assets',
|
2019-07-08 02:14:49 -04:00
|
|
|
{
|
2020-05-17 07:29:57 -04:00
|
|
|
Docs: ['docs-introduction', 'markdown-features', 'versioning'],
|
2019-07-08 02:14:49 -04:00
|
|
|
},
|
|
|
|
|
'blog',
|
2019-07-23 02:31:59 -04:00
|
|
|
'search',
|
2019-07-08 02:14:49 -04:00
|
|
|
'deployment',
|
2019-10-12 15:02:16 -04:00
|
|
|
'migrating-from-v1-to-v2',
|
2019-07-08 02:14:49 -04:00
|
|
|
],
|
2019-11-25 13:31:57 -05:00
|
|
|
'Advanced Guides': ['using-plugins', 'using-themes', 'presets'],
|
2019-04-28 23:20:24 -04:00
|
|
|
'API Reference': [
|
|
|
|
|
'cli',
|
|
|
|
|
'docusaurus-core',
|
|
|
|
|
'docusaurus.config.js',
|
2019-07-26 01:00:40 -04:00
|
|
|
'lifecycle-apis',
|
2019-11-25 13:31:57 -05:00
|
|
|
'theme-classic',
|
2019-04-28 23:20:24 -04:00
|
|
|
],
|
|
|
|
|
},
|
2020-04-05 13:10:22 -04:00
|
|
|
community: [
|
|
|
|
|
'support',
|
|
|
|
|
'team',
|
|
|
|
|
'resources',
|
|
|
|
|
{
|
|
|
|
|
type: 'link',
|
|
|
|
|
href: '/showcase',
|
|
|
|
|
label: 'Showcase',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
type: 'link',
|
|
|
|
|
href: '/feedback',
|
|
|
|
|
label: 'Feedback',
|
|
|
|
|
},
|
|
|
|
|
],
|
2019-04-28 23:20:24 -04:00
|
|
|
};
|