-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
49 lines (47 loc) · 1 KB
/
sidebars.ts
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
43
44
45
46
47
48
49
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docsSidebar: [
{
type: 'doc',
id: 'index',
label: 'Getting Started',
},
{
type: 'category',
label: 'Integrations',
collapsed: true,
link: {
type: 'generated-index',
title: 'Third Party Integrations',
description: 'TODO',
slug: '/integrations',
keywords: ['guides'],
},
items: [
{
type: 'autogenerated',
dirName: 'integrations'
}
],
},
{
type: 'category',
label: 'Project Setup',
collapsed: true,
link: {
type: 'generated-index',
title: 'Project Setup',
description: 'TODO',
slug: '/project_setup',
keywords: ['guides'],
},
items: [
{
type: 'autogenerated',
dirName: 'project_setup'
}
],
},
]
}
export default sidebars;