13 行
221 B
TypeScript
13 行
221 B
TypeScript
|
|
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
||
|
|
|
||
|
|
const sidebars: SidebarsConfig = {
|
||
|
|
defaultSidebar: [
|
||
|
|
{
|
||
|
|
type: 'autogenerated',
|
||
|
|
dirName: '.',
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default sidebars;
|