-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathaccelerate-sidebar.js
76 lines (72 loc) · 2.21 KB
/
accelerate-sidebar.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
documentationSidebar: [
'welcome',
{
'type': 'category',
'label': 'Dev Tools',
'items': [
'tools/dev-tools/getting-started',
'tools/dev-tools/settings',
{
'type': 'category',
'label': 'Tools',
'items': [
{
'type': 'category',
'label': 'Elements',
'items': [
'tools/dev-tools/tools/elements/elements',
'tools/dev-tools/tools/elements/properties',
'tools/dev-tools/tools/elements/overlay',
'tools/dev-tools/tools/elements/3d-viewer',
]
},
'tools/dev-tools/tools/assets',
'tools/dev-tools/tools/resources',
'tools/dev-tools/tools/logs',
'tools/dev-tools/tools/events',
'tools/dev-tools/tools/breakpoints',
'tools/dev-tools/tools/metrics',
]
},
{
'type': 'category',
'label': 'Advanced',
'items': [
'tools/dev-tools/advanced/options-reference',
'tools/dev-tools/advanced/attaching-browser-or-mobile',
'tools/dev-tools/advanced/attaching-to-the-previewer',
'tools/dev-tools/advanced/attaching-to-the-remote-tool',
'tools/dev-tools/advanced/attaching-wsl',
]
},
'tools/dev-tools/faq',
'tools/dev-tools/reporting-issues',
]
},
{
'type': 'category',
'label': 'Media Player',
'items': [
'components/media-player/quickstart',
'components/media-player/mediaplayer',
'components/media-player/mediaplayercontrol',
'components/media-player/mediasource',
]
},
{
'type': 'category',
'label': 'Web View',
'items': [
'components/webview/quickstart',
'components/webview/nativewebview',
'components/webview/nativewebdialog',
'components/webview/webauthenticationbroker',
'components/webview/faq',
]
},
],
};
module.exports = sidebars;