const Timestamp = new Date().getTime();
module.exports = {
// 将部署应用程序的基本URL
// 默认情况下,Vue CLI假设您的应用程序将部署在域的根目录下。
publicPath: './',
configureWebpack: {
output: { // 输出重构 打包编译后的 文件名称 【模块名称.版本号.时间戳】
filename: `static/js/[name].${Timestamp}.js`,
chunkFilename: `static/js/[name].${Timestamp}.js`
},
}
}
vue cli3-项目打包页面浏览器缓存的问题
最新推荐文章于 2024-09-25 15:23:22 发布