-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
56 lines (54 loc) · 1.52 KB
/
sidebars.ts
File metadata and controls
56 lines (54 loc) · 1.52 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'index',
'prerequisites',
'samples',
'resources',
{
type: 'category',
label: 'Getting Started',
collapsible: true,
collapsed: false,
items: [
{type: 'autogenerated', dirName: '01-gui-to-bui-to-dwc'},
{type: 'autogenerated', dirName: '02-browser-developer-tools'},
{type: 'autogenerated', dirName: '03-dwc-debugging'},
],
},
{
type: 'category',
label: 'Core Concepts',
collapsible: true,
collapsed: true,
items: [
{type: 'autogenerated', dirName: '04-upgrading-apps'},
{type: 'autogenerated', dirName: '05-dwc-controls'},
{type: 'autogenerated', dirName: '06-flow-layouts'},
],
},
{
type: 'category',
label: 'Advanced Topics',
collapsible: true,
collapsed: true,
items: [
{type: 'autogenerated', dirName: '07-icon-pools'},
{type: 'autogenerated', dirName: '08-control-validation'},
{type: 'autogenerated', dirName: '09-browser-constraints'},
{type: 'autogenerated', dirName: '10-embedding-components'},
{type: 'autogenerated', dirName: '11-advanced-responsive'},
],
},
{
type: 'category',
label: 'Deployment',
collapsible: true,
collapsed: true,
items: [
{type: 'autogenerated', dirName: '12-deployment'},
],
},
],
};
export default sidebars;