| 1234567891011121314151617181920212223242526272829303132 |
- module.exports = {
- devServer: {
- port:8082,
- proxy:{
- '/api/unified':{
- target:'http://localhost:8090',
- ws:true,
- changeOrigin:true,
- pathRewrite:{
- '^/api/unified':''
- }
- },
- '/api/pay':{
- target:'http://localhost:8280',
- ws:true,
- changeOrigin:true,
- pathRewrite:{
- '^/api/pay':''
- }
- },
- '/api':{
- target:'http://localhost:8080',
- ws:true,
- changeOrigin:true,
- pathRewrite:{
- '^/api':''
- }
- }
- },
- }
- };
|