-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
49 lines (49 loc) · 993 Bytes
/
sidebars.js
File metadata and controls
49 lines (49 loc) · 993 Bytes
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
module.exports = {
sidebar: [
{
type: 'doc',
id: 'index',
},
{
type: 'category',
label: 'Guides',
collapsed: true,
items: [
'guides/getting-started',
'guides/0a-architecture',
'guides/access-tokens',
'guides/server-api',
'guides/webhooks',
{
type: 'category',
label: 'Working with Rooms',
collapsed: true,
items: [
'guides/room/connect',
'guides/room/publish',
'guides/room/receive',
'guides/room/data',
],
},
'guides/conference-app',
],
},
{
type: 'category',
label: 'API Reference',
collapsed: true,
items: [
'references/client-sdks',
'references/server-sdks',
]
},
{
type: 'category',
label: 'LLM Resources',
collapsed: true,
items: [
'llm-resources/index',
]
}
],
};