From 82e599f0c1be38eadea34b105f6193b7b2b100ee Mon Sep 17 00:00:00 2001
From: OZGCloud <ozgcloud@mgm-tp.com>
Date: Mon, 9 Sep 2024 12:37:33 +0200
Subject: [PATCH] disable browser cache by nginx config

---
 alfa-client/libs/design-system/nginx.conf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/alfa-client/libs/design-system/nginx.conf b/alfa-client/libs/design-system/nginx.conf
index add779e603..051d6ea705 100644
--- a/alfa-client/libs/design-system/nginx.conf
+++ b/alfa-client/libs/design-system/nginx.conf
@@ -34,6 +34,9 @@ http {
         location / {
             root   /usr/share/nginx/html/design-system;
             index  index.html index.htm;
+
+            add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
+            add_header Expires "0";
         }
         
 
-- 
GitLab