vue-cli
里的默认配置,css和js的名字都加了哈希值,所以新版本css
、js
和就旧版本的名字是不同的,不会有缓存问题。
不过值得注意的是,把打包好的index.html
放到服务器里去的时候,index.html
在服务器端可能是有缓存的,这需要在服务器配置不让缓存index.html
nginx
配置,让index.html
不缓存
location = /index.html {
add_headerCache-Control"no-cache,no-store";
}
no-cache
,no-store
可以只设置一个
no-cache
浏览器会缓存,但刷新页面或者重新打开时会请求服务器,服务器可以响应304,如果文件有改动就会响应200
no-store
浏览器不缓存,刷新页面需要重新下载页面
网友评论