-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebars.js
More file actions
45 lines (45 loc) · 891 Bytes
/
sidebars.js
File metadata and controls
45 lines (45 loc) · 891 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
module.exports = {
docs: [
{
type: 'category',
label: 'Introduction',
collapsed: false,
items: [
'01-01-getting-started',
'01-02-setting-up-workspace',
],
},
{
type: 'category',
label: 'Core concepts',
collapsed: false,
items: [
'02-01-micro-frontends',
'02-02-consuming-a-micro-frontend',
'02-03-server-side-rendering',
'02-04-design-goals'
],
},
{
type: 'category',
label: 'React',
collapsed: true,
items: [
'react/01-exposing-a-micro-frontend',
'react/02-consuming-a-micro-frontend',
],
},
{
type: 'category',
label: 'Vue',
collapsed: true,
items: [
'vue/01-exposing-a-micro-frontend',
],
},
{
type: 'doc',
id: '03-01-deployment',
},
],
};