-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebars.js
114 lines (112 loc) · 2.22 KB
/
sidebars.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
sidebar: [
{
type: 'doc',
id: 'what-is-this',
label: 'What is this?'
},
{
type: 'doc',
id: 'who-is-this-for',
label: 'Who is this for?'
},
{
type: 'doc',
id: 'what-will-i-be-able-to-do',
label: 'What will I be able to do?'
},
{
type: 'doc',
id: 'how-is-this-guide-organized',
label: 'How is this guide organized?'
},
{
type: 'doc',
id: 'short-guide-streaming-video',
label: 'A short guide to streaming video'
},
{
type: 'doc',
id: 'addressing-new-tickets',
label: 'Addressing new tickets'
},
{
type: 'doc',
id: 'what-if-you-cant-reproduce',
label: 'What if you can\'t reproduce?',
},
{
type: 'category',
link: { type: 'doc', id: 'browser-devtools' },
label: 'Browser developer tools',
items: [
{
type: 'doc',
id: 'devtools-console',
label: 'Console',
},
{
type: 'doc',
id: 'devtools-network',
label: 'Network',
},
{
type: 'doc',
id: 'devtools-media',
label: 'Media',
},
]
},
{
type: 'category',
link: { type: 'doc', id: 'stream-issues' },
label: 'Stream issues',
items: [
{
type: 'doc',
id: 'manifest-issues',
label: 'Manifest',
},
{
type: 'doc',
id: 'segment-issues',
label: 'Segment',
},
],
},
{
type: 'doc',
id: 'player-issues',
label: 'Player issues',
},
{
type: 'doc',
id: 'browser-issues',
label: 'Browser issues',
},
{
type: 'doc',
id: 'drm',
label: 'DRM',
},
{
type: 'category',
label: 'Other tools',
items: [
{
type: 'doc',
id: 'charles-and-har-files',
label: 'Charles Proxy and HAR files',
}
],
},
{
type: 'doc',
id: 'exercises',
label: 'Exercises',
},
],
};
module.exports = sidebars;