Some checks failed
Deploy Web Apps / deploy (push) Successful in 5m52s
Build Android APK / build-android-apk (push) Failing after 23m15s
Queue Release Build / prepare (push) Successful in 1m42s
Queue Release Build / build-linux (push) Failing after 9m33s
Queue Release Build / build-windows (push) Successful in 26m5s
Queue Release Build / finalize (push) Has been skipped
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
|
|
|
|
const sidebars: SidebarsConfig = {
|
|
mainSidebar: [
|
|
'intro',
|
|
{
|
|
type: 'category',
|
|
label: 'User Guide',
|
|
items: [
|
|
'user-guide/first-steps',
|
|
'user-guide/servers-and-channels',
|
|
'user-guide/text-and-direct-messages',
|
|
'user-guide/voice-channels',
|
|
'user-guide/plugins',
|
|
'user-guide/settings',
|
|
'using-toju'
|
|
]
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Developer Guide',
|
|
items: [
|
|
'developer/contributing',
|
|
'developer/docusaurus-site',
|
|
'developer/dom-structure',
|
|
'developer/rest-api',
|
|
'developer/llm-plugin-builder-guide',
|
|
'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',
|
|
{
|
|
type: 'category',
|
|
label: 'Plugin API Examples',
|
|
items: [
|
|
'plugin-development/api/context-and-logging',
|
|
'plugin-development/api/profile',
|
|
'plugin-development/api/users-and-roles',
|
|
'plugin-development/api/server',
|
|
'plugin-development/api/channels',
|
|
'plugin-development/api/messages-and-typing',
|
|
'plugin-development/api/events',
|
|
'plugin-development/api/message-bus',
|
|
'plugin-development/api/p2p-and-media',
|
|
'plugin-development/api/storage',
|
|
'plugin-development/api/ui',
|
|
'plugin-development/api/commands'
|
|
]
|
|
},
|
|
'plugin-development/examples'
|
|
]
|
|
}
|
|
]
|
|
};
|
|
|
|
export default sidebars;
|