VUE vue-cli3配置打包后的文件加上版本号
为了实现项目上传后不存在缓存问题,需要在webpack中加上配置信息在项目根目录中添加vue.config.js文件const Timestamp = new Date().getTime();module.exports = {// webpack配置chainWebpack: config => {if (process.env.NODE_ENV === 'production') {/
·
为了实现项目上传后不存在缓存问题,需要在webpack中加上配置信息
在项目根目录中添加vue.config.js文件
const Timestamp = new Date().getTime();
module.exports = {
// webpack配置
chainWebpack: config => {
if (process.env.NODE_ENV === 'production') {
// 给js和css配置版本号
config.output.filename('js/[name].' + Timestamp + '.js').end();
config.output.chunkFilename('js/[name].' + Timestamp + '.js').end();
config.plugin('extract-css').tap(args => [{
filename: `css/[name].${Timestamp}.css`,
chunkFilename: `css/[name].${Timestamp}.css`
}])
}
},
css: {
loaderOptions: {
sass: {
// 向全局sass样式传入共享的全局变量
data: `@import "@/styles/public.scss";@import "@/styles/element_ui_style.scss";`
}
}
},
lintOnSave: false,
productionSourceMap: true,
//是开发模式的时候,获取当前路径下的地址,是测试或者开发模式的时候,用/获取地址
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
}
js、css加版本号参考:https://blog.csdn.net/superKM/article/details/102471167?biz_id=102
更多推荐
已为社区贡献1条内容
所有评论(0)