自学内容网 自学内容网

前端部署 浏览器缓存问题的解决

目录

方案一:配置项目入口文件

方案二:配置Nginx


方案一:配置项目入口文件

<meta http-equiv="pragram" content="no-cache">
<meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="expires" content="0">

方案二:配置Nginx

在nginx的配置文件 nginx.config添加:

location = / {
    add_header Cache-Control "no-cache, no-store, must-revalidate";
    add_header Pragma "no-cache";
    add_header Expires 0;
}

参考:前端应用部署后页面缓存问题的解决 - 简书


原文地址:https://blog.csdn.net/qq_50909707/article/details/144325975

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!