-
Notifications
You must be signed in to change notification settings - Fork 6
/
pagic.config.tsx
141 lines (140 loc) · 5.02 KB
/
pagic.config.tsx
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// @deno-types="https://deno.land/x/pagic@v0.9.1/src/types/react/v16.13.1/react.d.ts"
import React from 'https://dev.jspm.io/react@16.13.1'
export default {
srcDir: 'site',
theme: 'docs',
plugins: ['sidebar', 'prev_next', 'ga'],
title: 'ECMAScript+ 面试宝典',
description: '收集汇总梳理全网资源,涵盖 JS/TS 前后端的全方位面试题库(含提示性解析),助力找个好工作!',
github: 'https://github.com/hylerrix/es-interview',
head: (<link rel="icon" type="image/png" href="/favicon.png" />),
nav: [
{ text: '文章', link: '/articles/' },
{
text: '打赏一下!!',
link: 'http://qiniu.ningo.cloud/hylerrix/reward-alipay.png',
target: '_blank',
popover: (
<>
<img src="http://qiniu.ningo.cloud/hylerrix/reward-alipay.png" width="256" style={{ marginRight: '1rem', verticalAlign: 'top' }} />
<img src="http://qiniu.ningo.cloud/hylerrix/reward-wechat.png" width="256" style={{ verticalAlign: 'top' }} />
</>
)
},
{ text: 'Deno 钻研之术', target: '_blank', link: 'https://github.com/hylerrix/deno-tutorial' },
{ text: '持续添加中...', target: '_blank', link: 'https://github.com/hylerrix' },
{
text: '凝果屋',
link: 'https://github.com/ningowood',
target: '_blank',
popover: (
<img src="http://qiniu.ningo.cloud/ningo/official-qrcode.png" width="256" style={{ verticalAlign: 'top' }} />
)
},
{ text: '关于', target: '_blank', link: 'https://github.com/hylerrix' },
],
sidebar: {
'/articles/': [
'articles/README.md',
{
link: 'articles/00-Beginner/README.md',
title: '一切的起源',
children: [
'articles/00-Beginner/00-es-timeline.md',
'articles/00-Beginner/01-es-direction.md',
'articles/00-Beginner/02-es-rank.md',
'articles/00-Beginner/03-es-books.md',
],
},
{
link: 'articles/01-Programming/README.md',
title: '编程基础',
children: [
'articles/01-Programming/00-language.md',
'articles/01-Programming/01-operating-system.md',
'articles/01-Programming/02-algorithms.md',
'articles/01-Programming/03-design-patterns.md',
'articles/01-Programming/04-software-engineering.md',
'articles/01-Programming/05-software-test.md',
'articles/01-Programming/06-version-control.md',
'articles/01-Programming/07-computer-principles.md',
'articles/01-Programming/08-compilation-principle.md',
],
},
{
link: 'articles/02-ECMAScript+/README.md',
title: 'ECMAScript+',
children: [
'articles/02-ECMAScript+/00-ecmascript.md',
'articles/02-ECMAScript+/01-es-data-type.md',
'articles/02-ECMAScript+/02-javascript.md',
'articles/02-ECMAScript+/03-typescript.md',
'articles/02-ECMAScript+/04-javascript-parctice.md',
// 'articles/02-ECMAScript+/05-javascript-parctice-extra.md',
],
},
{
link: 'articles/03-HTML+CSS/README.md',
title: 'HTML + CSS',
children: [
'articles/03-HTML+CSS/00-html.md',
'articles/03-HTML+CSS/01-css-design.md',
'articles/03-HTML+CSS/02-css-advance.md',
'articles/03-HTML+CSS/03-css-practice.md',
'articles/03-HTML+CSS/04-dom-bom.md',
],
},
{
link: 'articles/04-Network+API/README.md',
title: '网络 + 前后端协作',
children: [
'articles/04-Network+API/00-network.md',
'articles/04-Network+API/01-fe-be-api.md',
'articles/04-Network+API/02-network-security.md',
],
},
{
link: 'articles/05-V8+Runtime/README.md',
title: 'V8 + JavaScript 运行时',
children: [
'articles/05-V8+Runtime/00-v8.md',
'articles/05-V8+Runtime/01-node.md',
'articles/05-V8+Runtime/02-deno.md',
],
},
{
link: 'articles/06-FE+Browser/README.md',
title: '前端应用开发 + 浏览器',
children: [
'articles/06-FE+Browser/00-browser.md',
'articles/06-FE+Browser/01-fe-engineering.md',
'articles/06-FE+Browser/02-fe-tooltain.md',
'articles/06-FE+Browser/03-pack-tool.md',
'articles/06-FE+Browser/04-fe-mobile.md',
'articles/06-FE+Browser/05-react.md',
'articles/06-FE+Browser/06-react-practice.md',
'articles/06-FE+Browser/07-vue.md',
'articles/06-FE+Browser/08-iframe.md',
],
},
{
link: 'articles/07-BE+Server/README.md',
title: '后端应用开发 + 服务器',
children: [
'articles/07-BE+Server/00-linux-nginx-database.md',
'articles/07-BE+Server/01-node-framework.md',
],
},
'articles/draw-in-markdown.md',
'articles/roadmap.md',
],
},
tools: {
editOnGithub: true,
backToTop: true,
},
ga: {
id: 'UA-169223577-1',
},
port: 8011,
}