-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
72 lines (70 loc) · 1.67 KB
/
sidebars.ts
File metadata and controls
72 lines (70 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
mainSidebar: [
{
type: 'category',
label: 'Getting Started',
collapsed: false,
items: [
'getting-started/introduction',
'getting-started/installation',
'getting-started/quick-start',
],
},
{
type: 'category',
label: 'Core Concepts',
collapsed: true,
items: [
'core-concepts/json-ld-first',
'core-concepts/pods-and-resources',
'core-concepts/content-negotiation',
],
},
{
type: 'category',
label: 'Features',
collapsed: true,
items: [
'features/overview',
'features/ldp-crud',
'features/patching',
'features/access-control',
'features/authentication',
'features/websocket-notifications',
'features/multi-user-pods',
'features/quotas-and-invites',
'features/inbox-and-spam-mitigation',
'features/live-reload',
'features/mashlib-ui',
'features/git-integration',
'features/activitypub',
'features/nostr',
'features/payments',
],
},
{
type: 'category',
label: 'Guides',
collapsed: true,
items: [
'guides/overview',
'guides/deploy-production',
'guides/git-push-nostr',
'guides/solid-apps',
],
},
{
type: 'category',
label: 'Reference',
collapsed: true,
items: [
'reference/cli',
'reference/configuration',
'reference/api',
'reference/pod-structure',
],
},
],
};
export default sidebars;