vue重新打包发布项目出现缓存问题如何解决

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重新打包发布项目出现缓存问题如何解决

基础教程推荐