-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
38 lines (34 loc) · 943 Bytes
/
sidebars.js
File metadata and controls
38 lines (34 loc) · 943 Bytes
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
// sidebars.js
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus finds a sidebar with the 'tutorialSidebar' ID
tutorialSidebar: [
'intro', // This is your docs/intro.md file
// This creates the "Host Setup" category
{
type: 'category',
label: 'Host Setup',
link: {
type: 'doc',
id: 'host-setup/installation', // Links to the main page for this category
},
items: [
// You can add more pages here later, like:
// 'host-setup/troubleshooting',
],
},
// This creates the "Server Setup" category
{
type: 'category',
label: 'Server Setup',
link: {
type: 'doc',
id: 'server-setup/setup', // Links to the main page for this category
},
items: [
// 'server-setup/configuration',
],
},
],
};
module.exports = sidebars;