23 lines
524 B
TypeScript
23 lines
524 B
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
mainSidebar: [
|
|
'intro',
|
|
'using-metoyou',
|
|
'desktop-and-local-api',
|
|
{
|
|
type: 'category',
|
|
label: 'Plugin Development',
|
|
items: [
|
|
'plugin-development/create-a-plugin',
|
|
'plugin-development/manifest',
|
|
'plugin-development/capabilities',
|
|
'plugin-development/api-reference',
|
|
'plugin-development/examples'
|
|
]
|
|
}
|
|
]
|
|
};
|
|
|
|
export default sidebars;
|