-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
39 lines (37 loc) · 1.08 KB
/
sidebars.ts
File metadata and controls
39 lines (37 loc) · 1.08 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
docs: [{type: 'autogenerated', dirName: '.'}],
// docs: [
// 'introduction',
// {
// type: 'category',
// label: 'Networking',
// link: {
// type: 'generated-index',
// title: 'Networking',
// description:
// "Networking과 관련된 CS 이론을 정리합니다.",
// keywords: ['Networking', 'http'],
// },
// items: [
// {
// type: 'category',
// label: 'HTTP',
// link: {
// type: 'doc',
// id: 'Networking/HTTP/introduction'
// },
// items: [
// 'Networking/HTTP/http-history',
// 'Networking/HTTP/transfer-encoding',
// 'Networking/HTTP/generic-message',
// 'Networking/HTTP/HTTP_host_header',
// 'Networking/HTTP/HTTP_Keep_Alive',
// 'Networking/HTTP/Message_Start_Line',
// ]
// },
// ],
// }
// ],
};
export default sidebars;