19 lines
347 B
TypeScript
19 lines
347 B
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
|
|
|
const communitySidebar: SidebarsConfig = {
|
|
communitySidebar: [
|
|
{
|
|
type: 'doc',
|
|
id: 'index',
|
|
label: 'Community',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'usage-tracking',
|
|
label: 'Usage Tracking',
|
|
},
|
|
],
|
|
};
|
|
|
|
export default communitySidebar;
|