44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
|
|
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
interposerSidebar: [
|
|
'Overview',
|
|
{
|
|
type: 'category',
|
|
label: 'Installation',
|
|
link: {type: 'generated-index', title: 'Installation'},
|
|
items: [
|
|
{type: 'doc', id: 'ReleasePackages'},
|
|
{type: 'doc', id: 'GettingStarted'},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Features',
|
|
link: {type: 'generated-index', title: 'Features'},
|
|
items: [
|
|
{type: 'doc', id: 'Logging'},
|
|
{type: 'doc', id: 'FileRedirection'},
|
|
{type: 'doc', id: 'RegistryEmulation'},
|
|
{type: 'doc', id: 'FastDL'},
|
|
{type: 'doc', id: 'PlayerIdentity'},
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Plugins',
|
|
link: {type: 'generated-index', title: 'Plugins'},
|
|
items: [{type: 'autogenerated', dirName: 'Plugins'}],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Releases',
|
|
link: {type: 'generated-index', title: 'Releases'},
|
|
items: [{type: 'autogenerated', dirName: 'Releases'}],
|
|
},
|
|
]
|
|
};
|
|
|
|
export default sidebars;
|