-
Notifications
You must be signed in to change notification settings - Fork 2
/
sidebars.js
33 lines (31 loc) · 1.06 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'quick-start',
{
type: 'category',
label: 'Plugin Development Guide',
collapsed: false,
items: [
'plugin-development-guide/plugin-name',
'plugin-development-guide/graphic-design',
'plugin-development-guide/warning-text',
'plugin-development-guide/about-dialog',
'plugin-development-guide/logo-image',
'plugin-development-guide/context-menu',
'plugin-development-guide/loading-bar',
'plugin-development-guide/message-box',
'plugin-development-guide/config-file',
'plugin-development-guide/one-time-plugin',
'plugin-development-guide/exception',
'plugin-development-guide/minimum-compatible-version',
'plugin-development-guide/dark-mode',
'plugin-development-guide/proxy-host',
'plugin-development-guide/update-check',
'plugin-development-guide/export-and-launch',
],
},
],
};
module.exports = sidebars;