-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
36 lines (34 loc) · 801 Bytes
/
app.json
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
{
"pages":[
{
"entry":"about",
"title":"关于",
"cdn":{
"js":[
]
}
},{
"entry":"home",
"title":"首页",
"cdn":{}
},{
"entry":"index",
"title":"主页",
"cdn":{}
}
],
"basePath": "./src/pages/",
"cdn": {
"js": [
"https://cdn.bootcss.com/vue/2.5.2/vue.min.js",
"https://cdn.bootcss.com/element-ui/2.1.0/index.js"
],
"css": [
"https://cdn.bootcss.com/element-ui/2.1.0/theme-chalk/index.css"
]
},
"externals": {
"vue": "Vue",
"element-ui": "ElementUI"
}
}