mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-02 03:37:48 +02:00
* docs(v2): add docs for migration command * docs(v2): fix admonitions * docs(v2): make minor changes to instructions * docs(v2): add information about option flags * docs(v2): put migration docs in guide folder * fix(v2): fix broken links * fix(v2): fix more broken links * docs(v2): fix a broken link again * fix(v2): rerun github action * Update website/docs/guides/migrating-from-v1-to-v2.md * Update website/docs/guides/migrating-from-v1-to-v2.md Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com>
69 lines
1.4 KiB
JavaScript
69 lines
1.4 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: [
|
|
'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',
|
|
'docusaurus.config.js',
|
|
'lifecycle-apis',
|
|
'theme-classic',
|
|
],
|
|
},
|
|
],
|
|
community: [
|
|
'community/support',
|
|
'community/team',
|
|
'community/resources',
|
|
{
|
|
type: 'link',
|
|
href: '/showcase',
|
|
label: 'Showcase',
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/feedback',
|
|
label: 'Feedback',
|
|
},
|
|
],
|
|
};
|