vue.config.js 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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://cimnet.zjw.sh.gov.cn:2008/',
  16. secure: false,
  17. changeOrigin: true,
  18. pathRewrite: {
  19. '^/addressapi': ''
  20. }
  21. },
  22. '/api': {
  23. target: 'https://cimnet.zjw.sh.gov.cn:2008/',
  24. secure: false,
  25. changeOrigin: true,
  26. pathRewrite: {
  27. '^/api': ''
  28. }
  29. }
  30. },
  31. },
  32. // devServer:{
  33. // proxy:{
  34. // '/api': {//匹配所有以/阿皮开头的请求路径
  35. // target: 'http://www.smi.sh.cegn.cn',//代理目标的基础路径
  36. // pathRewrite: {
  37. // '^api': '' // 将代理服务器转发给服务器地址中的/api转换为空字符串
  38. // },
  39. // }
  40. // }
  41. // }
  42. })