diff --git a/frontend/index.html b/frontend/index.html
index d02b0f8..3c5b0b3 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -11,8 +11,10 @@
-
-
+
+
+
+
diff --git a/frontend/nginx.conf b/frontend/nginx.conf
index af38297..a07ec59 100644
--- a/frontend/nginx.conf
+++ b/frontend/nginx.conf
@@ -20,8 +20,10 @@ server {
add_header Cache-Control "public";
try_files $uri =404;
}
+ # CSS/JS: 1-week cache; config.js is excluded by its exact-match rule above.
location ~* \.(?:css|js)$ {
- add_header Cache-Control "no-cache";
+ expires 7d;
+ add_header Cache-Control "public, max-age=604800";
try_files $uri =404;
}