-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
44 lines (43 loc) · 1.02 KB
/
sidebars.js
File metadata and controls
44 lines (43 loc) · 1.02 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
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
{ type: 'doc', id: 'product/introduction', label: '产品介绍' },
{
type: 'category',
label: '安装部署',
link: { type: 'generated-index' },
items: [
'install/overview',
'install/linux',
'install/docker',
'install/config',
],
},
{
type: 'category',
label: '配置说明',
link: { type: 'generated-index' },
items: ['config/read'],
},
{
type: 'category',
label: '功能指南',
link: { type: 'generated-index' },
items: [
'guide/applications',
'guide/licenses',
'guide/projects',
'guide/organizations',
'guide/users',
'guide/proxy',
'guide/monitoring',
'guide/alerts',
'guide/audit',
],
},
{ type: 'doc', id: 'api/overview', label: 'API 概览' },
'FAQ',
],
};
export default sidebars;