forked from vime-js/vime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.cjs
40 lines (39 loc) · 898 Bytes
/
sidebars.cjs
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
34
35
36
37
38
39
40
const {
buildComponentsSideBarItems,
} = require('./helpers/components-sidebar.cjs');
module.exports = {
docs: [
{
type: 'category',
label: 'Welcome',
items: [
'welcome/introduction',
'welcome/design-principles',
'welcome/contributing',
'welcome/release-notes',
],
collapsed: false,
},
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/installation',
'getting-started/player',
'getting-started/providers',
'getting-started/ui',
'getting-started/controls',
'getting-started/settings',
'getting-started/styling',
'getting-started/i18n',
],
collapsed: false,
},
{
type: 'category',
label: 'Components',
items: buildComponentsSideBarItems(),
collapsed: false,
},
],
};