mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-02 11:47:23 +02:00
* stable createData namespacing + second-blog dogfooding * Docs: support multi-instance + make community docs a separate instance * tests: add 2nd docs instance to versioned site * fix docs version cli tests * fix docs versioning cli * typo * team: add link to my site * better extendCli integration * fix metadata tests * tests for versioned site with second docs instance * move some validation code to utils-validation * fix missing dependency * fix bad compiled output due to importing constants in ./client folder * make docs tests easier to maintain * refactors * prevent lodash imports in client bundle * redirect old community docs to new urls
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* 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: [
|
|
{
|
|
type: 'category',
|
|
label: 'Docusaurus',
|
|
items: ['introduction', 'design-principles', 'contributing'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Getting Started',
|
|
collapsed: false,
|
|
items: ['installation', 'configuration', 'typescript-support'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Guides',
|
|
items: [
|
|
'guides/creating-pages',
|
|
'styling-layout',
|
|
'static-assets',
|
|
{
|
|
Docs: ['docs-introduction', 'markdown-features', 'versioning'],
|
|
},
|
|
'blog',
|
|
'search',
|
|
'deployment',
|
|
'guides/migrating-from-v1-to-v2',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Advanced Guides',
|
|
items: ['using-plugins', 'using-themes', 'presets'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'API Reference',
|
|
items: [
|
|
'cli',
|
|
'docusaurus-core',
|
|
'api/docusaurus.config.js',
|
|
'lifecycle-apis',
|
|
'theme-classic',
|
|
],
|
|
},
|
|
],
|
|
};
|