From a617549914324981878246ec60f4d3335b08e05a Mon Sep 17 00:00:00 2001 From: devaraj3 Date: Fri, 7 Aug 2026 12:56:23 +0530 Subject: [PATCH] feat: add cache control headers for static assets in .htaccess --- public/.htaccess | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/.htaccess b/public/.htaccess index 90d6504..38aad5e 100644 --- a/public/.htaccess +++ b/public/.htaccess @@ -13,3 +13,9 @@ RewriteRule ^(.*)$ $1.html [L] # Otherwise, fall back to the main app shell so client-side routing can show a proper 404 RewriteRule ^ index.html [L] + + + + Header set Cache-Control "public, max-age=31536000, immutable" + +