diff --git a/src/index.ts b/src/index.ts index fe53aa0..9ce1f09 100644 --- a/src/index.ts +++ b/src/index.ts @@ -99,6 +99,9 @@ export default { // Special path if (path === "/favicon.ico" && method == "GET") { return new Response(null, { + headers: { + "cache-control": "public, max-age=172800", + }, status: 404 }) }