-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
55 lines (55 loc) · 1.46 KB
/
vue.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
module.exports = {
publicPath: "./",
devServer: {
proxy: {
"/oplan": {
target: "https://orait.oss-cn-hangzhou.aliyuncs.com",
ws: true,
changeOrigin: true
}
}
},
pages: {
//这块可以用函数替换,循环输出页面
login: {
// page 的入口
entry: "src/views/login/login.js",
// 模板来源
template: "src/views/login/login.html",
// 在 dist/index.html 的输出
filename: "login.html"
},
wpSimluate: {
// page 的入口
entry: "src/views/wpSimluate/wpSimluate.js",
// 模板来源
template: "src/views/wpSimluate/wpSimluate.html",
// 在 dist/index.html 的输出
filename: "wpSimluate.html"
},
network: {
// page 的入口
entry: "src/views/network/network.js",
// 模板来源
template: "src/views/network/network.html",
// 在 dist/network.html 的输出
filename: "network.html"
},
chartshow: {
// page 的入口
entry: "src/views/chartshow/chartshow.js",
// 模板来源
template: "src/views/chartshow/chartshow.html",
// 在 dist/chartshow.html 的输出
filename: "chartshow.html"
},
fileSystem: {
// page 的入口
entry: "src/views/fileSystem/fileSystem.js",
// 模板来源
template: "src/views/fileSystem/fileSystem.html",
// 在 dist/fileSystem.html 的输出
filename: "fileSystem.html"
}
}
};