make GET 404.html return 404, not 200
Alan Pearce alan@alanpearce.eu
Tue, 16 Apr 2024 00:01:59 +0200
1 files changed, 5 insertions(+), 1 deletions(-)
jump to
M src/app.ts → src/app.ts
@@ -163,7 +163,11 @@ } const file = files.get(pathname); let contentEncoding = "identity"; let suffix = ""; - if (file && (await file.handle.exists())) { + if ( + !pathname.startsWith("/404.html") && + file && + (await file.handle.exists()) + ) { let etagMatch = request.headers.get("if-none-match") === file.etag; let mtimeMatch = parseIfModifiedSinceHeader(