-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars-dumont.ts
More file actions
56 lines (54 loc) · 1.25 KB
/
sidebars-dumont.ts
File metadata and controls
56 lines (54 loc) · 1.25 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
51
52
53
54
55
56
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
dumontSidebar: [
{
type: "category",
label: "Dumont DEP",
link: {
type: "doc",
id: "index",
},
items: [
{
type: "category",
label: "Getting Started",
items: [
"getting-started/intro",
"getting-started/core-concepts",
],
},
"installation-guide",
"configuration-reference",
"architecture",
"indexing-plugins",
{
type: "category",
label: "Connectors",
link: {
type: "doc",
id: "connectors/overview",
},
items: [
"connectors/web-crawler",
"connectors/database",
"connectors/filesystem",
"connectors/aem",
"aem-event-listener",
"connectors/wordpress",
],
},
"developer-guide",
"rest-api",
{
type: "category",
label: "Extending Connectors",
items: [
"extending-aem",
"extending-database",
],
},
],
},
],
};
export default sidebars;