forked from apache/kvrocks-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
35 lines (34 loc) · 821 Bytes
/
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
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
'getting-started',
'namespace',
'cluster',
'replication',
{
"type": "category",
"label": "Operation",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'backup',
'kvrocks-exporter',
]
},
{
"type": "category",
"label": "References",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'supported-commands',
'info-sections',
]
},
],
};
module.exports = sidebars;