const path = require("path"); // const name = "教室预约"; // function resolve(dir) { // return path.join(__dirname, dir); // } const Version = new Date().getTime(); module.exports = { // 配置路径别名 configureWebpack: { //代理 devServer: { "port": 8080, // 调试时允许内网穿透,让外网的人访问到本地调试的H5页面 disableHostCheck: true, "proxy": { "/api": { // "target": 'http://api.dwbszbs.dev.xmnk.cn/api', //希梦乃康 "target": "https://zbs.xueyousuohuo.cn/api", // 大卫博士 "changeOrigin": true, "secure": false, "pathRewrite": { "^/api": "" //匹配请求路径里面有 /api 替换成 https://www.xxx.cn } } } }, //productionSourceMap: false, }, productionSourceMap: true, chainWebpack: config => { config.output.filename('[name].[hash].' + Version + '.js').end(); } }