index.js 503 B

123456789101112131415161718192021
  1. // let proxyObj = {};
  2. // proxyObj['/'] = {
  3. // ws: false,
  4. // // target: ' http://192.168.1.124:8081',
  5. // target: ' http://localhost:8085',
  6. // // target: 'http://192.168.1.103:8081',
  7. // changeOrigin: true,
  8. // pathRewrite: {
  9. // '^/': ''
  10. // }
  11. // };
  12. // /*这部分将请求转发到后端,前端端口是8081,后端端口是8085*/
  13. // module.exports = {
  14. // devServer: {
  15. // host: 'localhost',
  16. // port: 8080,
  17. // proxy: proxyObj
  18. // }
  19. // }