-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathconfig.js
77 lines (75 loc) · 1.7 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
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
module.exports = {
title: 'mpvue.com',
description: 'mpvue document',
head: [
['link', {rel: 'icon', href: '/'}]
],
base: '/',
themeConfig: {
algolia: {
apiKey: 'cf0e99a1a6068ecc4ed40f54869d4735',
indexName: 'mpvue'
},
repo: 'https://github.com/mpvue/mpvue-docs',
docsDir: 'docs',
docsBranch: 'master',
editLinks: false,
nav: [
{
text: '首页',
link: '/'
}, {
text: 'Q&A',
link: '/qa'
},
{
text: 'build',
items: [
{
text: 'index',
link: '/build/index'
}, {
text: 'mpvue-webpack-target',
link: '/build/mpvue-webpack-target'
}, {
text: 'postcss-mpvue-wxss',
link: '/build/postcss-mpvue-wxss'
}, {
text: 'px2rpx-loader',
link: '/build/px2rpx-loader'
}, {
text: 'mpvue-lint',
link: '/build/mpvue-lint'
}, {
text: 'webpack-mpvue-asset-plugin',
link: '/build/webpack-mpvue-asset-plugin'
}
]
}, {
text: 'mpvue',
items: [{
text: 'index',
link: '/mpvue/index'
}, {
text: 'mpvue-template-compiler',
link: '/mpvue/mpvue-template-compiler'
}, {
text: 'quickstart',
link: '/mpvue/quickstart'
}, {
text: 'Simple',
link: '/mpvue/simple'
}]
}, {
text: 'changelog',
items: [{
text: 'index',
link: '/change-log/index'
}, {
text: '2018.7.24',
link: '/change-log/2018.7.24'
}]
}
]
}
}