-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
48 lines (45 loc) · 980 Bytes
/
sidebars.ts
File metadata and controls
48 lines (45 loc) · 980 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
43
44
45
46
47
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [
'intro',
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/installation',
'getting-started/quickstart',
],
},
{
type: 'category',
label: 'Developer Tools',
collapsed: false,
items: [
'developer-tools/github-app',
'developer-tools/gitlab-app',
'developer-tools/python-sdk',
'developer-tools/cli',
'developer-tools/mcp-server',
],
},
{
type: 'category',
label: 'Precogs App',
items: [
'portal/overview',
'portal/scan-types',
],
},
{
type: 'category',
label: 'Reference',
items: [
'reference/glossary',
'reference/ai-glossary',
'reference/faq',
],
},
],
};
export default sidebars;