fix: remove cached html response

This commit is contained in:
2024-09-16 17:51:48 +01:00
parent 54dbef9d45
commit 0d5dcd43a4

View File

@ -37,7 +37,7 @@ export const onRequest: PagesFunction<Env> = async context => {
return new Response(body, {
headers: {
...Object.fromEntries(rsp.headers.entries()),
"cache-control": "public, max-age=60",
"cache-control": "no-cache",
},
});
}