-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
96 lines (92 loc) · 1.95 KB
/
sidebars.ts
File metadata and controls
96 lines (92 loc) · 1.95 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
86
87
88
89
90
91
92
93
94
95
96
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
appSidebar: [
{
type: 'doc',
id: 'app/getting-started',
label: 'Getting Started',
},
{
type: 'category',
label: 'Sources',
collapsed: false,
items: [
'app/sources/understanding-sources',
'app/sources/local-folders',
'app/sources/network-shares',
'app/sources/remote-servers',
],
},
],
serverSidebar: [
{
type: 'doc',
id: 'server/what-is-yattee-server',
label: 'What is Yattee Server',
},
{
type: 'category',
label: 'Setup',
collapsed: false,
items: [
'server/setup/docker',
'server/setup/reverse-proxy',
'server/setup/setup-wizard',
],
},
{
type: 'category',
label: 'Administration',
collapsed: false,
items: [
'server/admin/settings',
'server/admin/users',
'server/admin/sites',
'server/admin/credentials',
],
},
{
type: 'doc',
id: 'server/security',
label: 'Security & Privacy',
},
{
type: 'doc',
id: 'server/troubleshooting',
label: 'Troubleshooting',
},
],
guidesSidebar: [
{
type: 'doc',
id: 'guides/complete-setup',
label: 'Complete Setup from Scratch',
},
{
type: 'doc',
id: 'guides/first-source',
label: 'Adding Your First Source',
},
{
type: 'doc',
id: 'guides/import-subscriptions',
label: 'Importing from YouTube',
},
{
type: 'doc',
id: 'guides/import-from-instance',
label: 'Importing from Invidious/Piped',
},
{
type: 'doc',
id: 'guides/public-instances',
label: 'Public Instances for YouTube',
},
{
type: 'doc',
id: 'guides/reporting-issues',
label: 'Reporting Issues',
},
],
};
export default sidebars;