diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/worker.ts | 2 |
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; }) |