-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
83 lines (81 loc) · 2.12 KB
/
sidebars.js
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
73
74
75
76
77
78
79
80
81
82
83
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docs: [
{
type: 'doc',
id: 'home', // document ID
label: 'Home', // sidebar label
},
{
type: 'category',
label: 'Workspace',
link: {
type: 'generated-index',
description: 'Learn about my open-source boilerplate',
slug: '/workspace',
keywords: ['workspace', 'nx', 'boilerplate'],
},
items: [
'workspace/getting-started',
'workspace/installation',
{
type: 'category',
label: 'Techniques',
link: {
type: 'generated-index',
description: 'Learn about workspace techniques',
slug: '/workspace/techniques',
keywords: ['workspace', 'nx', 'boilerplate', 'nestjs', 'nodejs', 'gitlab'],
},
items: ['workspace/techniques/dependency-injection', 'workspace/techniques/module', 'workspace/techniques/git-tag-flow']
},
],
},
{
type: 'category',
label: 'Packages',
link: {
type: 'generated-index',
description: 'Learn about TB packages',
slug: '/packages',
keywords: ['packages', 'nats', 'nestjs'],
},
items: [
'packages/health-checks', 'packages/logging', 'packages/nats'
],
},
// {
// type: 'category',
// label: 'Tutorials',
// link: {
// type: 'generated-index',
// description: 'Real world advices and tutorials',
// slug: '/tutorials',
// keywords: ['tutorials'],
// },
// items: [
// {
// type: 'category',
// label: 'Bitcoin Observer',
// link: {
// type: 'doc',
// id: 'tutorials/bitcoin-observer/introduction',
// },
// items: ['tutorials/bitcoin-observer/observer'],
// },
// ],
// },
],
// But you can create a sidebar manually
/*
tutorialSidebar: [
{
type: 'category',
label: 'Tutorial',
items: ['hello'],
},
],
*/
};
module.exports = sidebars;