From 07022cf176ab86e2c6be12fc33b9c4630dc8bd7b Mon Sep 17 00:00:00 2001 From: Collin Barrett Date: Fri, 14 Jun 2024 16:08:53 -0500 Subject: [PATCH] =?UTF-8?q?refactor(web):=20=E2=99=BB=EF=B8=8F=20tidy=20Ca?= =?UTF-8?q?che-Control=20headers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/staticwebapp.config.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/web/staticwebapp.config.json b/web/staticwebapp.config.json index b19c577e7..9a83c4b4b 100644 --- a/web/staticwebapp.config.json +++ b/web/staticwebapp.config.json @@ -3,49 +3,49 @@ { "route": "/static/*", "headers": { - "cache-control": "public, max-age=31536000, immutable" + "Cache-Control": "public, max-age=31536000, immutable" } }, { "route": "/favicon.ico", "headers": { - "cache-control": "public, max-age=86400" + "Cache-Control": "public, max-age=86400" } }, { "route": "/logo_filterlists.png", "headers": { - "cache-control": "public, max-age=31536000, immutable" + "Cache-Control": "public, max-age=31536000, immutable" } }, { "route": "/icon_filterlists.png", "headers": { - "cache-control": "public, max-age=31536000, immutable" + "Cache-Control": "public, max-age=31536000, immutable" } }, { "route": "/manifest.json", "headers": { - "cache-control": "public, max-age=86400" + "Cache-Control": "public, max-age=86400" } }, { "route": "/robots.txt", "headers": { - "cache-control": "public, max-age=86400" + "Cache-Control": "public, max-age=86400" } }, { "route": "/tpl-redirect.js", "headers": { - "cache-control": "public, max-age=86400" + "Cache-Control": "public, max-age=86400" } }, { "route": "/tpl.html", "headers": { - "cache-control": "public, max-age=86400" + "Cache-Control": "public, max-age=86400" } } ],