From 5c3db90541451a3500a0908e015c689b67e81c6c Mon Sep 17 00:00:00 2001 From: Elliott Marquez Date: Fri, 20 Oct 2023 17:40:25 -0700 Subject: [PATCH] docs: remove cache for entrypoint JS files until we can diagnose what's going on PiperOrigin-RevId: 575357630 --- catalog/firebase.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/catalog/firebase.json b/catalog/firebase.json index 171a368b40..9794c2978a 100644 --- a/catalog/firebase.json +++ b/catalog/firebase.json @@ -17,7 +17,16 @@ "headers": [ { "key": "Cache-Control", - "value": "604800" + "value": "max-age=604800" + } + ] + }, + { + "source": "**/[!chunk-]*.js", + "headers": [ + { + "key": "Cache-Control", + "value": "max-age=3600" } ] }, @@ -26,7 +35,7 @@ "headers": [ { "key": "Cache-Control", - "value": "31536000" + "value": "max-age=31536000" } ] }