-
Notifications
You must be signed in to change notification settings - Fork 14
/
docusaurus.config.js
196 lines (184 loc) · 5.4 KB
/
docusaurus.config.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
import {themes as prismThemes} from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'HackWay技术学习路线',
tagline: '为大学生、程序员自学系统的计算机专业知识、编程语言提供循序渐进的学习路线、资源以及交流社区',
url: 'https://hackway.org',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'https://hackweek-1251009918.cos.ap-shanghai.myqcloud.com/hackway/cs/ico.png',
organizationName: 'hackway', // Usually your GitHub org/user name.
projectName: 'hackway', // Usually your repo name.
i18n: {
defaultLocale: 'zh-Hans',
locales: ['zh-Hans'],
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/lidongyx/hackwaydoc/blob/master/',
},
blog: {
showReadingTime: true,
// editUrl:
// 'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
},
gtag: {
trackingID: 'G-TQK724W37H',
anonymizeIP: true,
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],
scripts: [
{
src: 'https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3564174644141518',
async: true,
crossorigin:"anonymous"
},
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
metadata: [{name: 'keywords', content: '编程,计算机专业,名校课程,CS名校,编程学习路线,计算机学习路径,自学编程'}],
navbar: {
title: '',
logo: {
alt: 'HackWay技术学习路线',
src: 'https://hackweek-1251009918.cos.ap-shanghai.myqcloud.com/hackway/cs/hackway.png',
},
items: [
{
type: 'dropdown',
label: '计算机专业',
position: 'left',
items:[ {
to: 'docs/cs/intro',
label: '六大CS名校',
},
{
to: 'docs/math/intro',
label: '大学数学',
},
{
to: 'docs/ai/intro',
label: '人工智能',
},
]
},
{
type: 'dropdown',
label: '职业方向',
position: 'left',
items: [
{
to: 'docs/java/intro',
label: 'Java后端',
},
{
to: 'docs/cpp/intro',
label: 'C++开发',
},
{
to: 'docs/js/intro',
label: 'JS/TS前端',
},
{
to: 'docs/devops/intro',
label: '运维工程师',
},
],
},
{
type: 'dropdown',
label: '资源与经验',
position: 'left',
items: [
{
to: 'docs/source/intro',
label: '资源工具',
},
{
to: 'docs/expert/intro',
label: '大佬经验',
},
],
},
],
},
footer: {
style: 'dark',
// links: [
// {
// title: 'Docs',
// items: [
// {
// label: 'Tutorial',
// to: '/docs/intro',
// },
// ],
// },
// {
// title: 'Community',
// items: [
// {
// label: 'Stack Overflow',
// href: 'https://stackoverflow.com/questions/tagged/docusaurus',
// },
// {
// label: 'Discord',
// href: 'https://discordapp.com/invite/docusaurus',
// },
// {
// label: 'Twitter',
// href: 'https://twitter.com/docusaurus',
// },
// ],
// },
// {
// title: 'More',
// items: [
// {
// label: 'Blog',
// to: '/blog',
// },
// {
// label: 'GitHub',
// href: 'https://github.com/facebook/docusaurus',
// },
// ],
// },
// ],
copyright: `Copyright © ${new Date().getFullYear()} HackWay技术学习路线`,
},
prism: {
theme: prismThemes.vsDark,
darkTheme: prismThemes.dracula,
additionalLanguages: ['java'],
},
announcementBar: {
id: 'support_us',
content:
'🐝 技术交流群,点击 <a target="_blank" rel="noopener noreferrer" href="https://hackway.org/qrcode">加入交流群</a> 获取加群方式',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: false,
},
// googleAdsense: {
// dataAdClient: 'ca-pub-3564174644141518',
// },
}),
// plugins: ['docusaurus-plugin-google-adsense'],
};
export default config;