-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebars.js
More file actions
58 lines (55 loc) · 1.3 KB
/
Copy pathsidebars.js
File metadata and controls
58 lines (55 loc) · 1.3 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
48
49
50
51
52
53
54
55
56
57
58
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'overview',
{
type: 'category',
label: 'Package Structure',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'package_structure'}],
},
'script_interface',
{
type: 'category',
label: 'Host Namespace',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'host'}],
},
{
type: 'category',
label: 'SDK Files',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'sdk'}],
},
{
type: 'category',
label: 'Context Object',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'context'}],
},
{
type: 'category',
label: 'Objects',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'objects'}],
},
{
type: 'category',
label: 'Skin',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'skin'}],
},
{
type: 'category',
label: 'Utilities',
collapsed: true,
items: [{type: 'autogenerated', dirName: 'utilities'}],
},
'api_index',
],
scriptsSidebar: [
{type: 'autogenerated', dirName: 'scripts'},
],
};
export default sidebars;