-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsidebarsUserDocs.js
More file actions
47 lines (45 loc) · 1.17 KB
/
sidebarsUserDocs.js
File metadata and controls
47 lines (45 loc) · 1.17 KB
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
41
42
43
44
45
46
47
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
userDocs: [
'index',
{
type: 'category',
label: 'Application Examples',
link: {
type: 'generated-index'
},
items: [
{
type: 'category',
label: 'openDesk on SCS',
link: {
type: 'generated-index'
},
items: [
'application-examples/opendesk-on-scs/overview',
'application-examples/opendesk-on-scs/quickstart',
'application-examples/opendesk-on-scs/requirements',
'application-examples/opendesk-on-scs/getting_started',
'application-examples/opendesk-on-scs/configuration',
'application-examples/opendesk-on-scs/user-import',
'application-examples/opendesk-on-scs/contribute'
]
}
]
},
{
type: 'category',
label: 'Portability Hints',
link: {
type: 'doc',
id: 'usage-hints/index'
},
items: [
'usage-hints/find-image/index',
'usage-hints/diskless-flavor/index'
]
}
]
}
module.exports = sidebars