因为 index.html 会被浏览器缓存,间接的导致资源hash也不会改变,会导致PC、微信、其他浏览器不能及时刷新,可以加上如下配置让客户端不进行缓存

    1. location = /index.html {
    2. expires 0;
    3. }