send textual 404 if not accepting text/html
Alan Pearce alan@alanpearce.eu
Mon, 15 Apr 2024 23:29:42 +0200
1 files changed, 5 insertions(+), 0 deletions(-)
jump to
M src/app.ts → src/app.ts
@@ -235,6 +235,11 @@ }); } status = 404; const notfound = files.get("/404.html"); + if (!request.headers.get("accept")?.split(",").includes("text/html")) { + return new Response("404 Not Found", { + status, + }); + } if (notfound) { return serveFile(notfound, status, { "content-type": "text/html; charset=utf-8",