Files
Claude Opus 7f45c36aa2 init
2026-05-26 23:23:25 +01:00

17 lines
475 B
TypeScript

import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
// The sidebar is auto-generated from the `docs/` directory structure.
// Order of categories and pages is controlled by:
// - `sidebar_position` in the page frontmatter;
// - `_category_.json` in the folder (label, position, collapsed, collapsible).
const sidebars: SidebarsConfig = {
mainSidebar: [
{
type: 'autogenerated',
dirName: '.',
},
],
};
export default sidebars;