vue.config.js 459 B

12345678910
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/bpi': { // 以'/bpi'开头的请求会被代理进行转发
  5. target: 'http://192.168.1.100:9092/index/api', // 要发向的后台服务器地址 如果后台服务跑在后台开发人员的机器上,就写成 `http://ip:port` 如 `http:192.168.12.213:8081` ip为后台服务器的ip
  6. changeOrigin: true
  7. }
  8. }
  9. }
  10. }