- 在.html页面中添加标签
- 后端配置nginx,让index.html不缓存
location = /index.html {
add_header Cache-Control “no-cache, no-store”;
} - 在vite.config.ts中添加
rollupOpyions: {
output: { // 输出编译后的文件名称:【文件名称.时间戳】、【文件名称.版本号.时间戳】…
entryFileNames: assets/[name].[hash].js
,
chunkFileNames: assets/[name].[hash].js
assetFileNames:assets/[name].[hash].[ext]
}
}
}