diff --git a/nginx.conf b/nginx.conf index 2b672ba..7667840 100644 --- a/nginx.conf +++ b/nginx.conf @@ -12,10 +12,11 @@ server { location / { try_files $uri $uri/ /index.html; + add_header Cache-Control "no-cache"; } location /assets/ { - expires 1y; - add_header Cache-Control "public, immutable"; + expires 7d; + add_header Cache-Control "public"; } }