-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsidebars.js
198 lines (193 loc) · 5.75 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
//tutorialSidebar: [,{type: 'autogenerated', dirName: '.'}]
// But you can create a sidebar manually
tutorialSidebar: [
'intro',
{
"type": "link",
"label": "用户相关",
"className": "icon-account",
"href": "/docs/category/account",
},
{
"type": "link",
"label": "虚拟主机RVH",
"className": "icon-rvh",
"href": "/docs/category/rvh",
},
{
"type": "link",
"label": "云服务器RCS",
"className": "icon-rcs",
"href": "/docs/category/rcs",
},
{
"type": "link",
"label": "裸金属物理机",
"className": "icon-rbm",
"href": "/docs/category/rbm",
},
{
"type": "link",
"label": "游戏云VPS/面板",
"className": "icon-rgs",
"href": "/docs/category/rgs",
},
{
"type": "link",
"label": "对象存储",
"className": "icon-ros",
"href": "/docs/category/ros",
},
{
"type": "link",
"label": "雨盾CDN",
"className": "icon-cdn",
"href": "/docs/category/cdn",
},
{
"type": "link",
"label": "域名服务",
"className": "icon-domain",
"href": "/docs/category/domain",
}, "support", "terms"
],
account: [{
"type": "category",
"label": '用户相关', link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '雨云账号',
description: '关于雨云账号的文档。',
slug: "/category/account"
},
"items": [
{
"type": "autogenerated",
"dirName": "account"
}
]
},],
rvh: [{
"type": "category",
"label": "虚拟主机",
link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '虚拟主机',
description: '关于雨云虚拟主机账号的文档。',
slug: "/category/rvh"
},
"items": [
{
"type": "autogenerated",
"dirName": "rvh"
}]
},],
rcs: [{
"type": "category",
"label": "云服务器", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '云服务器',
description: '关于雨云云服务器的文档。',
slug: "/category/rcs"
},
"items": [
{
"type": "autogenerated",
"dirName": "rcs"
}]
},],
rgs: [{
"type": "category",
"label": "游戏云服务器", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '游戏云',
description: '关于游戏云的文档。',
slug: "/category/rgs"
},
"items": [
{
"type": "autogenerated",
"dirName": "rgs"
}]
},],
rbm: [{
"type": "category",
"label": "裸金属物理机", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '裸金属物理机',
description: '关于裸金属物理机的文档。',
slug: "/category/rbm"
},
"items": [
{
"type": "autogenerated",
"dirName": "rbm"
}]
},],
ros: [{
"type": "category",
"label": "对象存储", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '对象存储',
description: '关于对象存储的文档。',
slug: "/category/ros"
},
"items": [
{
"type": "autogenerated",
"dirName": "ros"
}]
},],
domain: [{
"type": "category",
"label": "域名", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '域名服务',
description: '关于域名相关的文档。',
slug: "/category/domain"
},
"items": [
{
"type": "autogenerated",
"dirName": "domain"
}]
},],
cdn: [{
"type": "category",
"label": "雨盾CDN", link: {
type: 'generated-index',
// 你可以在这里添加其他配置,比如标题或描述
title: '雨盾CDN',
description: '和雨盾与CDN的文档都在这里。',
slug: "/category/cdn"
},
"items": [
{
"type": "autogenerated",
"dirName": "cdn"
}]
},],
guide: [{
"type": "autogenerated",
"dirName": "guide"
},]
};
module.exports = sidebars;