proxyConfig.js 204 B

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