-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
46 lines (46 loc) · 1.13 KB
/
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
// .vuepress/config.js
module.exports = {
locales: {
'/': {
lang: 'en-US',
title: 'Chemical Tools',
description: 'Essential tools for chemistry students'
},
'/zh/': {
lang: 'zh-CN',
title: '化学e+',
description: '化学专业学生的必备工具'
}
},
head: [
['link', { rel: 'icon', href: `/chemicaltools.png` }],
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
['link', { rel: 'apple-touch-icon', href: `/chemicaltools.png` }],
['meta', { name: 'msapplication-TileImage', content: '/chemicaltools.png' }]
],
themeConfig: {
editLinks: true,
locales: {
'/': {
selectText: 'Languages',
label: 'English',
editLinkText: 'Edit this page on GitHub',
nav: [
{ text: 'Home', link: '/' },
{ text: 'Download', link: '/#download' },
{ text: 'Guide', link: '/help.html' },
]
},
'/zh/': {
selectText: '语言',
label: '中文',
editLinkText: '在 GitHub 上编辑此页',
nav: [
{ text: '主页', link: '/zh/' },
{ text: '下载', link: '/zh/#download' },
{ text: '用户手册', link: '/help.html' },
]
},
}
}
}