vue.config.js 545 B

123456789101112131415161718192021222324
  1. // vue.config.js 配置说明
  2. //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
  3. // 这里只列一部分,具体配置参考文档
  4. module.exports = {
  5. publicPath:'./',
  6. devServer: {
  7. host: '0.0.0.0',
  8. https: true,
  9. open: true,
  10. proxy:{
  11. ["/dev-api"]:{
  12. // target:'https://edu.jiaxintech.com',
  13. target:'https://edutest.jlccta.com',
  14. changeOrigin:true,
  15. ws: false,
  16. pathRewrite: {
  17. ['^' + "/dev-api"]: '/prod-api'
  18. }
  19. }
  20. }
  21. },
  22. }