/ docs / communitySidebar.ts
communitySidebar.ts
 1  import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
 2  
 3  const communitySidebar: SidebarsConfig = {
 4    communitySidebar: [
 5      {
 6        type: 'doc',
 7        id: 'index',
 8        label: 'Community',
 9      },
10      {
11        type: 'doc',
12        id: 'usage-tracking',
13        label: 'Usage Tracking',
14      },
15    ],
16  };
17  
18  export default communitySidebar;