21 lines
407 B
TypeScript
21 lines
407 B
TypeScript
|
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
||
|
|
||
|
const sidebars: SidebarsConfig = {
|
||
|
sidebar: [{type: 'autogenerated', dirName: '.'}],
|
||
|
|
||
|
// But you can create a sidebar manually
|
||
|
/*
|
||
|
tutorialSidebar: [
|
||
|
'intro',
|
||
|
'hello',
|
||
|
{
|
||
|
type: 'category',
|
||
|
label: 'Tutorial',
|
||
|
items: ['tutorial-basics/create-a-document'],
|
||
|
},
|
||
|
],
|
||
|
*/
|
||
|
};
|
||
|
|
||
|
export default sidebars;
|