generated from sapphiredev/sapphire-template
-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
sidebars.ts
86 lines (84 loc) · 1.83 KB
/
sidebars.ts
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
84
85
86
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
sidebar: [
{
type: 'category',
label: 'General',
items: ['General/Welcome'],
collapsed: false
},
{
type: 'category',
label: 'Guide',
collapsed: true,
items: [
{
type: 'autogenerated',
dirName: 'Guide'
}
]
},
{
type: 'category',
label: 'Documentation',
collapsed: true,
items: [
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-framework/index'
},
label: '@sapphire/framework',
items: require('./docs/Documentation/api-framework/typedoc-sidebar.cjs')
},
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-pieces/index'
},
label: '@sapphire/pieces',
items: require('./docs/Documentation/api-pieces/typedoc-sidebar.cjs')
},
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-utilities/index'
},
label: 'Sapphire Utilities',
items: require('./docs/Documentation/api-utilities/typedoc-sidebar.cjs')
},
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-plugins/index'
},
label: 'Sapphire Plugins',
items: require('./docs/Documentation/api-plugins/typedoc-sidebar.cjs')
},
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-type/index'
},
label: '@sapphire/type',
items: require('./docs/Documentation/api-type/typedoc-sidebar.cjs')
},
{
type: 'category',
link: {
type: 'doc',
id: 'Documentation/api-shapeshift/index'
},
label: '@sapphire/shapeshift',
items: require('./docs/Documentation/api-shapeshift/typedoc-sidebar.cjs')
}
]
}
]
};
export default sidebars;