disallow fetching pre-compressed files directly
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:33:13 +0200
1 files changed, 2 insertions(+), 0 deletions(-)
jump to
M src/app.ts → src/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())