-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebars.js
More file actions
42 lines (36 loc) · 969 Bytes
/
sidebars.js
File metadata and controls
42 lines (36 loc) · 969 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
39
40
41
42
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [
{
type: 'doc',
id: 'intro',
label: 'Introduction',
},
{
type: 'doc',
id: 'get-started',
label: 'Get Started',
},
// ---- Manual section (auto contents inside /manual) ----
{
type: 'category',
label: 'Manual',
link: { type: 'doc', id: 'manual/manual-home' },
items: [
{ type: 'autogenerated', dirName: 'manual' },
],
},
// ---- Scripting Reference section (auto contents inside /scripting-reference) ----
{
type: 'category',
label: 'Scripting Reference',
link: { type: 'doc', id: 'scripting-reference/scripting-home' },
items: [
{ type: 'autogenerated', dirName: 'scripting-reference' },
],
},
// ---- AUTO-GENERATE EVERY OTHER FOLDER IN DOCS ----
],
};
module.exports = sidebars;