vue.config.js 617B

123456789101112131415161718192021222324
  1. module.exports = {
  2. chainWebpack: config => {
  3. config.rule('js').include.add(/node_modules\/(dom7|swiper)\/.*/)
  4. },
  5. // devServer: {
  6. // https: {
  7. // // 不验证证书
  8. // disableHostCheck: true,
  9. // cert: false,
  10. // key: false,
  11. // ca: false
  12. // },
  13. // proxy: {
  14. // '/api': {
  15. // target: 'https://192.168.2.80:8080/test', // 替换为你的 API 地址
  16. // changeOrigin: true,
  17. // secure: false, // 跳过对目标地址的证书验证
  18. // pathRewrite: { '^/api': '' },
  19. // }
  20. // }
  21. // }
  22. }