123456789101112131415161718192021222324 |
- module.exports = {
- chainWebpack: config => {
- config.rule('js').include.add(/node_modules\/(dom7|swiper)\/.*/)
- },
- // devServer: {
- // https: {
- // // 不验证证书
- // disableHostCheck: true,
- // cert: false,
- // key: false,
- // ca: false
- // },
- // proxy: {
- // '/api': {
- // target: 'https://192.168.2.80:8080/test', // 替换为你的 API 地址
- // changeOrigin: true,
- // secure: false, // 跳过对目标地址的证书验证
- // pathRewrite: { '^/api': '' },
- // }
- // }
- // }
-
- }
|