vue.config.js 574 B

123456789101112131415161718192021
  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. // proxy:{
  13. // '/api': {//匹配所有以/阿皮开头的请求路径
  14. // target: 'http://www.smi.sh.cegn.cn',//代理目标的基础路径
  15. // pathRewrite: {
  16. // '^api': '' // 将代理服务器转发给服务器地址中的/api转换为空字符串
  17. // },
  18. // }
  19. // }
  20. // }
  21. })