-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsidebars-developers.ts
More file actions
40 lines (38 loc) · 999 Bytes
/
sidebars-developers.ts
File metadata and controls
40 lines (38 loc) · 999 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
developers: [
{
type: 'category',
label: 'Developers',
link: {type: 'doc', id: 'index'},
items: [
{
type: 'category',
label: 'CLI Reference',
link: {type: 'doc', id: 'cli/index'},
items: [
{
type: 'autogenerated',
dirName: 'cli',
},
],
},
'nf-bactopia/index',
'ai-skills/index',
{
type: 'category',
label: 'Subworkflows',
link: {type: 'doc', id: 'subworkflows/index'},
items: [{type: 'autogenerated', dirName: 'subworkflows'}],
},
{
type: 'category',
label: 'Modules',
link: {type: 'doc', id: 'modules/index'},
items: [{type: 'autogenerated', dirName: 'modules'}],
},
],
},
],
};
export default sidebars;