-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsidebars.ts
More file actions
50 lines (48 loc) · 1.43 KB
/
sidebars.ts
File metadata and controls
50 lines (48 loc) · 1.43 KB
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
50
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
kennisbank: [
{
type: "category",
label: "API Ontwikkeling",
link: { type: "doc", id: "api-ontwikkeling/index" },
items: [{ type: "autogenerated", dirName: "api-ontwikkeling" }],
},
{
type: "category",
label: "Front-end",
link: { type: "doc", id: "front-end/index" },
items: [{ type: "autogenerated", dirName: "front-end" }],
},
{
type: "category",
label: "Data & Interoperabiliteit",
link: { type: "doc", id: "data/index" },
items: [{ type: "autogenerated", dirName: "data" }],
},
{
type: "category",
label: "Open Source",
link: { type: "doc", id: "open-source/index" },
items: [{ type: "autogenerated", dirName: "open-source" }],
},
{
type: "category",
label: "DevOps & Platform",
link: { type: "doc", id: "devops/index" },
items: [{ type: "autogenerated", dirName: "devops" }],
},
{
type: "category",
label: "Security",
link: { type: "doc", id: "security/index" },
items: [{ type: "autogenerated", dirName: "security" }],
},
{
type: "category",
label: "Leidraad softwareontwikkeling",
link: { type: "doc", id: "leidraad/index" },
items: [{ type: "autogenerated", dirName: "leidraad" }],
},
],
};
export default sidebars;