diff options
| author | Fuwn <[email protected]> | 2023-10-17 17:43:08 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-17 17:43:14 -0700 |
| commit | 4f0742fa4a02808cdc2bc9522644ffa2fc04215b (patch) | |
| tree | 5dced35c7d3eccda15b725bcc36e225873b79014 /src/worker.ts | |
| parent | docs(readme): add (diff) | |
| download | shinobu-main.tar.xz shinobu-main.zip | |
Diffstat (limited to 'src/worker.ts')
| -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; }) |