From baa1c7099aca4607e0bf35b756377275cfceaad9 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Thu, 19 Feb 2026 13:54:39 -0600 Subject: [PATCH] fix(#2411): add html to gzip types to fix cliennt responses --- infra/cdn/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/infra/cdn/main.tf b/infra/cdn/main.tf index 91cac411e..c9c292ed4 100644 --- a/infra/cdn/main.tf +++ b/infra/cdn/main.tf @@ -154,9 +154,6 @@ resource "fastly_service_vcl" "python_org" { name = "Default rules" content_types = [ "application/javascript", - "text/css", - "application/javascript", - "text/javascript", "application/json", "application/vnd.ms-fontobject", "application/x-font-opentype", @@ -168,6 +165,9 @@ resource "fastly_service_vcl" "python_org" { "font/otf", "image/svg+xml", "image/vnd.microsoft.icon", + "text/css", + "text/html", + "text/javascript", "text/plain", "text/xml", ]