-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvue.config.js
62 lines (60 loc) · 2.06 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
56
57
58
59
60
61
62
const loader = require("sass-loader");
module.exports = {
outputDir: "docs",
indexPath: "index.html",
publicPath: "/vuecli3/",
runtimeCompiler: true,
// chainWebpack: (config) => {
// config.resolve.symlinks(true) // 修复热更新失效
// },
css: {
loaderOptions: {
// 向 CSS 相关的 loader 传递选项
less: {
javascriptEnabled: true,
},
},
},
// configureWebpack: {
// plugins: [
// [
// "import",
// { libraryName: "ant-design-vue", libraryDirectory: "es", style: true },
// ],
// ],
// },
devServer: {
hot: true,
// https: true,
proxy: {
"/api": {
target: "http://openapi.tuling123.com/openapi/api/v2", //设置你调用的接口域名和端口号 别忘了加http
changeOrigin: true,
pathRewrite: {
"^/api": "", //这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
},
},
"/node": {
target: "http://localhost:8111", //设置你调用的接口域名和端口号 别忘了加http
changeOrigin: true,
pathRewrite: {
"^/node": "", //这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
},
},
"/Express": {
target: "http://localhost:8110", //设置你调用的接口域名和端口号 别忘了加http
changeOrigin: true,
pathRewrite: {
"^/Express": "", //这里理解成用‘/api’代替target里面的地址,后面组件中我们掉接口时直接用api代替 比如我要调用'http://40.00.100.100:3002/user/add',直接写‘/api/user/add’即可
},
},
"/bda": {
target: 'https://aip.baidubce.com',
changeOrigin: true,
pathRewrite: {
"^/bda": ''
}
}
},
},
};