-
Notifications
You must be signed in to change notification settings - Fork 1
/
sidebars.js
69 lines (68 loc) · 1.61 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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
'intro',
{
type: 'category',
label: '사용법',
link: {
type: 'doc',
id: 'usage/index',
},
items: [
{
type: 'category',
label: '런쳐',
items: [
'usage/launcher/getting-started',
'usage/launcher/server-configuration',
'usage/launcher/advanced',
],
},
{
type: 'category',
label: '클라이언트',
items: [
'usage/client/getting-started',
'usage/client/server-profiles',
{
type: 'category',
label: '서버 대시보드',
link: {
type: 'doc',
id: 'usage/client/dashboard/index',
},
items: [
'usage/client/dashboard/overview',
'usage/client/dashboard/stats',
'usage/client/dashboard/worlds',
'usage/client/dashboard/players',
'usage/client/dashboard/traffic',
'usage/client/dashboard/console',
]
}
],
},
],
},
{
type: 'category',
label: '개발',
link: {
type: 'doc',
id: 'dev/index',
},
items: [
{
type: 'category',
label: 'API',
items: [
'dev/api/launcher',
'dev/api/plugin',
],
},
]
}
],
};
module.exports = sidebars;