vue-cli 3.0打包添加版本号

 修改vue.config.js,在module.exports中添加

// 添加时间戳
const Timestamp = new Date().getTime();
module.exports = {
    configureWebpack:{ 
        output: {
            // 输出重构【模块名称.hash值.时间戳】
            filename: `[name].[hash].${Timestamp}.js`,
            chunkFilename: `[name].[hash].${Timestamp}.js`
        },
    },
}

 

你可能感兴趣的:(Vue)