all repos — website @ f97814c2cdc8d34d5816afe7ed81c841ead84998

My website

disallow fetching pre-compressed files directly
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:33:13 +0200
commit

f97814c2cdc8d34d5816afe7ed81c841ead84998

parent

5fa3e47c00e5d584033c325f2ccdd3c917aa33a1

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M src/app.tssrc/app.ts
@@ -160,10 +160,12 @@ location: new URL(pathname, expectedHostURL).toString(),           },
         });
       }
+      const { base, ext } = path.parse(pathname);
       const file = files.get(pathname);
       let contentEncoding = "identity";
       let suffix = "";
       if (
+        ![".br", ".zst", ".gz"].includes(ext || base) &&
         !pathname.startsWith("/404.html") &&
         file &&
         (await file.handle.exists())