-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebars.ts
42 lines (40 loc) · 1.32 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
slider: [
'intro',
{
type: 'category',
label: '연혁',
link: {type: "doc", id: "histories",},
items: [{type: 'autogenerated', dirName: 'histories'}],
},
{
type: 'category',
label: '활동',
link: {type: 'generated-index', slug: 'activities'},
items: [{type: 'autogenerated', dirName: 'activities'},],
},
{
type: 'category',
label: '회원',
link: {type: 'generated-index', slug: 'members'},
items: [{type: 'autogenerated', dirName: 'members'}],
},
{
type: 'category',
label: '졸업회원',
link: {type: 'generated-index', slug: 'graduates'},
items: [{type: 'autogenerated', dirName: 'graduates'}],
},
{
type: 'category',
label: '자료실',
link: {type: 'generated-index', slug: 'presentations'},
items: [{type: 'autogenerated', dirName: 'presentations'}],
},
'recruit',
'contact',
],
};
export default sidebars;