在vue.config.js 修改没有文件则在根目录创建文件
const Timestamp = new Date().getTime(); //当前时间为了防止打包缓存不刷新,所以给每个js文件都加一个时间戳
module.exports = {
// devServer: {
// // proxy: { //配置跨域
// // "/api": {
// // target: 'http://192.168.1.19:9997/', //这里后台的地址模拟的;应该填写你们真实的后台接口
// // changeOrigin: true, //允许跨域
// // pathRewrite: {
// // "^/api": ''
// // }
// // },
// // }
// },
configureWebpack: {
output: { // 输出重构 打包编译后的 文件名称 【模块名称.版本号.时间戳】
filename: `[name].${process.env.VUE_APP_Version}.${Timestamp}.js`,
chunkFilename: `[name].${process.env.VUE_APP_Version}.${Timestamp}.js`
},
}
}