-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathsidebars.ts
More file actions
14 lines (12 loc) · 745 Bytes
/
sidebars.ts
File metadata and controls
14 lines (12 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
gettingstartedSidebar: [{ type: 'autogenerated', dirName: 'getting-started' }],
tutorialSidebar: [{ type: 'autogenerated', dirName: 'tutorials' }],
referencesSidebar: [{ type: 'autogenerated', dirName: 'references' }],
moddingtoolsSidebar: [{ type: 'autogenerated', dirName: 'modding-tools' }],
resourcesSidebar: [{ type: 'autogenerated', dirName: 'resources' }],
engineapiSidebar: [{ type: 'autogenerated', dirName: 'engine-api' }],
scriptingapiSidebar: [{ type: 'autogenerated', dirName: 'scripting-docs' }],
forcontributorsSidebar: [{ type: 'autogenerated', dirName: 'for-contributors' }],
};
export default sidebars;