注:nginx版本是1.14。css
咱们只要修改下nginx中的.conf文件就能够了,以下List-1所示。如何部署静态资源文件见个人这篇博客。html
List-1nginx
location / { ... } #下面这个就是禁止缓存 location ~ \.(js|css|html|png|jpg)$ { add_header Cache-Control no-store; }