-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebarsOnPremise.js
More file actions
62 lines (56 loc) · 1.95 KB
/
sidebarsOnPremise.js
File metadata and controls
62 lines (56 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
/**
* 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
onPremiseSidebar: [
{
type: 'category',
label: '部署运维手册',
link: {
type: 'generated-index',
title: '部署运维手册',
description: '本手册关注 Milvus 商业版镜像的部署和日常运维等操作,包括 Milvus 集群安装、升级、配置变更、扩缩容和监控告警配置等章节。',
slug: '/deployment-and-operations',
keywords: ['部署', '运维', '私有化镜像', 'Milvus']
},
collapsible: false,
items: [{ type: 'autogenerated', dirName: 'docs/ops'}]
},
// {
// type: 'category',
// label: 'vDB 使用手册',
// link: {
// type: 'generated-index',
// title: 'vDB 使用手册',
// description: '本手册关注 Milvus 集群的使用,包括基本概念、Collection 管理、数据插入与更新、向量搜索与查询等章节。',
// slug: '/user-guides',
// keywords: ['vDB', '使用手册', '私有化镜像', 'Milvus']
// },
// collapsible: false,
// items: [
// 'docs/vdb/test',
// ]
// }
],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
module.exports = sidebars;