1. 在.html页面中添加标签


  2. 后端配置nginx,让index.html不缓存
    location = /index.html {
    add_header Cache-Control “no-cache, no-store”;
    }
  3. 在vite.config.ts中添加

rollupOpyions: {
output: { // 输出编译后的文件名称:【文件名称.时间戳】、【文件名称.版本号.时间戳】…
entryFileNames: assets/[name].[hash].js,
chunkFileNames: assets/[name].[hash].js
assetFileNames:assets/[name].[hash].[ext]
}
}
}

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部