vue.config.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. publicPath:'./',
  5. lintOnSave:false,
  6. configureWebpack:{
  7. experiments:{
  8. topLevelAwait:true
  9. }
  10. },
  11. devServer:{
  12. //https:true,
  13. proxy: {
  14. '/addressapi': {
  15. target: 'https://cimweb.zjw.sh.cegn.cn:2008/',
  16. secure: false,
  17. changeOrigin: true,
  18. pathRewrite: {
  19. '^/addressapi': ''
  20. }
  21. },
  22. '/api': {
  23. target: 'https://cimweb.zjw.sh.cegn.cn:2007/data-business-prod/',
  24. //target: 'http://localhost:9250/data-business-prod/',
  25. secure: false,
  26. changeOrigin: true,
  27. pathRewrite: {
  28. '^/api': ''
  29. }
  30. }
  31. },
  32. },
  33. // devServer:{
  34. // proxy:{
  35. // '/api': {//匹配所有以/阿皮开头的请求路径
  36. // target: 'http://www.smi.sh.cegn.cn',//代理目标的基础路径
  37. // pathRewrite: {
  38. // '^api': '' // 将代理服务器转发给服务器地址中的/api转换为空字符串
  39. // },
  40. // }
  41. // }
  42. // }
  43. })