-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
34 lines (34 loc) · 866 Bytes
/
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
module.exports={
devServer:{
port: 8083,
https: false,
open: true,
proxy:{
"/api":{
target: "http://192.168.23.75:8083",
ws:true,
changeOrigin: true,
pathRewrite:{
'^/api':''
}
},
"/ban":{
target: "https://api.douban.com",
ws:true,
secure: false,
changeOrigin: true,
pathRewrite: {
'^/ban':''
}
},
// "/exp":{
// target:"http://192.168.23.75:3000",
// ws:true,
// changeOrigin:true,
// pathRewrite:{
// '^/exp':''
// }
// }
}
}
};