forked from apache/kvrocks-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.js
37 lines (36 loc) · 862 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
36
37
/** @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',
'kvrocks2redis',
]
},
{
"type": "category",
"label": "References",
collapsed: false,
link: {
type: 'generated-index',
},
items: [
'supported-commands',
'info-sections',
]
},
'faq'
],
};
module.exports = sidebars;