-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.ts
More file actions
85 lines (83 loc) · 1.73 KB
/
sidebars.ts
File metadata and controls
85 lines (83 loc) · 1.73 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docSidebar: [
{
type: "doc",
id: "index",
label: "Introduction",
},
{
type: "doc",
id: "getting-started",
label: "Getting Started",
},
{
type: "category",
label: 'Features',
items: [
{
type: "doc",
id: "features/dashboard",
label: "Dashboard",
},
{
type: "doc",
id: "features/google-chrome-versions",
label: "Google Chrome Versions",
},
{
type: "doc",
id: "features/http-proxy",
label: "HTTP Proxy",
},
{
type: "doc",
id: "features/live-view",
label: "Live View",
},
{
type: "doc",
id: "features/security",
label: "Security",
},
{
type: "doc",
id: "features/user-data-storage",
label: "User Data Storage",
},
]
},
{
type: "category",
label: 'Configurations',
items: [
{
type: "doc",
id: "configurations/blitzbrowser",
label: "BlitzBrowser",
},
{
type: "doc",
id: "configurations/chrome-devtools-protocol",
label: "Chrome DevTools Protocol (CDP)",
},
{
type: "doc",
id: "configurations/dashboard",
label: "Dashboard",
},
]
},
{
type: "category",
label: 'Tutorials',
items: [
{
type: 'autogenerated',
dirName: 'tutorials'
},
]
}
],
};
export default sidebars;