aboutsummaryrefslogtreecommitdiff
path: root/src/worker.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/worker.ts')
-rw-r--r--src/worker.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/worker.ts b/src/worker.ts
index 124c67b..d535988 100644
--- a/src/worker.ts
+++ b/src/worker.ts
@@ -36,7 +36,7 @@ router
.get("/shinobu", async (_request) => {
let response = new Response(await shinobu());
- response.headers.set("Cache-Control", "public, max-age=5, s-maxage=5");
+ response.headers.set("Cache-Control", "public, max-age=1, s-maxage=1");
return response;
})