-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebarsDeveloper.ts
More file actions
34 lines (32 loc) · 899 Bytes
/
sidebarsDeveloper.ts
File metadata and controls
34 lines (32 loc) · 899 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
developerSidebar: [
'intro',
{
type: 'category',
label: 'Projects',
items: [
'projects/projects-overview',
'projects/eduide-deployment',
'projects/theia-scale-tests',
'projects/eduide-shared-cache',
'projects/eduide-lsp-extension',
'projects/eduide-data-bridge',
'projects/eduide',
'projects/theia-arc-runners',
'projects/workspace-garbage-collector',
],
},
{
type: 'category',
label: 'Platform',
items: ['platform/architecture', 'platform/api-surface'],
},
{
type: 'category',
label: 'Guides',
items: ['guides/local-development', 'guides/deploying-pull-requests', 'guides/session-prewarming'],
},
],
};
export default sidebars;