2025-05-21 11:43:04 +01:00
|
|
|
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
|
2025-05-21 13:59:53 +01:00
|
|
|
import * as apiSidebar from './docs/api/sidebar';
|
2025-05-21 11:43:04 +01:00
|
|
|
|
|
|
|
const sidebars: SidebarsConfig = {
|
2025-05-23 20:12:19 +01:00
|
|
|
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,
|
2025-05-21 11:43:04 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
export default sidebars;
|