17 lines
519 B
TypeScript
17 lines
519 B
TypeScript
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
|
import * as apiSidebar from './docs/api/sidebar';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
docsSidebar: ['welcome', {
|
|
'label': "Censorship 101",
|
|
'type': "category",
|
|
items: [{'type': 'autogenerated', dirName: 'censorship'}]
|
|
},{
|
|
'label': "Web Mirrors",
|
|
'type': "category",
|
|
items: [{'type': 'autogenerated', dirName: 'mirrors'}]
|
|
}],
|
|
apiSidebar: apiSidebar.default,
|
|
};
|
|
|
|
export default sidebars;
|