vue每次重新编译打包发布出现缓存,每次都需要强制刷新页面才生效,下面编程教程网小编给大家简单介绍一下解决方法!
在index.html新增以下代码
<meta http-equiv="Expires" content="0">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Cache" content="no-cache">
在nginx配置
location = /index.html {
add_header Cache-Control "no-cache, no-store";
}
以上是编程学习网小编为您介绍的“vue重新打包发布项目出现缓存问题如何解决”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:vue重新打包发布项目出现缓存问题如何解决
基础教程推荐
猜你喜欢
- 用VsCode编辑TypeScript的实现方法 2024-02-07
- 详解px单位html5响应式方案 2022-09-16
- 利用html注释写法做IE兼容<!--[if IE]> 2024-12-14
- Javascript 运动中Offset的bug解决方案 2024-01-08
- 完美解决ajax跨域请求下parsererror的错误 2023-01-26
- 谈谈CSS隐藏元素(display,visibility)的区别 2024-04-26
- vue中的router-view 2023-10-08
- Typescript中extends关键字的基本使用 2022-10-22
- js实现登录时记住密码的方法分析 2024-04-16
- JS(vue iview)分页解决方案 2023-10-08