-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebarsReleaseNotes.ts
More file actions
58 lines (56 loc) · 1.14 KB
/
Copy pathsidebarsReleaseNotes.ts
File metadata and controls
58 lines (56 loc) · 1.14 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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebarsReleaseNotes: SidebarsConfig = {
releaseNotesSidebar: [
{
type: 'doc',
id: 'index',
label: 'Overview',
},
{
type: 'category',
label: 'Version 5 - Lincoln',
link: {
type: 'doc',
id: 'v5-lincoln/index',
},
items: [{ type: 'autogenerated', dirName: 'v5-lincoln' }],
},
{
type: 'category',
label: 'Version 4 - Tucker',
link: {
type: 'doc',
id: 'v4-tucker/index',
},
items: [{ type: 'autogenerated', dirName: 'v4-tucker' }],
},
{
type: 'category',
label: 'Version 3 - Monkey',
link: {
type: 'doc',
id: 'v3-monkey/index',
},
items: [{ type: 'autogenerated', dirName: 'v3-monkey' }],
},
{
type: 'category',
label: 'Version 2 - Penny',
link: {
type: 'doc',
id: 'v2-penny/index',
},
items: [{ type: 'autogenerated', dirName: 'v2-penny' }],
},
{
type: 'category',
label: 'Version 1 - Alby',
link: {
type: 'doc',
id: 'v1-alby/index',
},
items: [{ type: 'autogenerated', dirName: 'v1-alby' }],
},
],
};
export default sidebarsReleaseNotes;