proxyConfig.js 206 B

123456789
  1. module.exports = {
  2. '/api': {
  3. target: 'http://106.14.4.1:8090/', // 设置你调用的接口域名和端口号
  4. changeOrigin: true, // 跨域
  5. pathRewrite: {
  6. '^/api': '/'
  7. }
  8. },
  9. };