|
@@ -22,12 +22,12 @@ module.exports = {
|
22
|
22
|
open: true, //配置自动启动浏览器
|
23
|
23
|
// 配置多个代理
|
24
|
24
|
proxy: {
|
25
|
|
- "/api": {
|
26
|
|
- target: "https://swstest.sgjyun.com",// 要访问的接口域名https://swstest.sgjyun.com
|
27
|
|
- ws: true,// 是否启用websockets
|
|
25
|
+ "/xcx/api": {
|
|
26
|
+ target: "https://sws.kuyicloud.com",// 要访问的接口域名https://swstest.sgjyun.com
|
|
27
|
+ ws: false,// 是否启用websockets
|
28
|
28
|
changeOrigin: true, //开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
|
29
|
29
|
pathRewrite: {
|
30
|
|
- '^/api': '/api' //这里理解成用'/api'代替target里面的地址,比如我要调用'http://40.00.100.100:3002/user/add',直接写'/api/user/add'即可
|
|
30
|
+ // '^/xcx/api': '' //这里理解成用'/api'代替target里面的地址,比如我要调用'http://40.00.100.100:3002/user/add',直接写'/api/user/add'即可
|
31
|
31
|
}
|
32
|
32
|
}
|
33
|
33
|
}
|