1234567891011121314151617181920212223 |
- export default {
- publicPath: '/',
- proxy: {
- '/api-app': {
- target: 'http://api.starbuds.laylib.com',
- //target: 'http://h5.paqukeji.com',
- changeOrigin: true,
- //pathRewrite: { '^/server': '' },
- },
- '/api-common': {
- target: 'http://api.starbuds.laylib.com',
- //target: 'http://h5.paqukeji.com',
- changeOrigin: true,
- //pathRewrite: { '^/server': '' },
- },
- '/wx': {
- target: 'https://api.weixin.qq.com',
- //target: 'http://h5.paqukeji.com',
- changeOrigin: true,
- pathRewrite: { '^/wx': '' },
- },
- },
- }
|