From 6d4f878798c6e7fea110dc709ee3fed6fe9c25fa Mon Sep 17 00:00:00 2001 From: HF Date: Mon, 4 Apr 2022 20:55:31 +0200 Subject: [PATCH] increase chunk cache time --- src/routes/chunks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/chunks.js b/src/routes/chunks.js index aaf669b..fad4f20 100644 --- a/src/routes/chunks.js +++ b/src/routes/chunks.js @@ -55,7 +55,7 @@ export default async (req: Request, res: Response, next) => { } res.set({ - 'Cache-Control': `public, s-maxage=${60}, max-age=${50}`, // seconds + 'Cache-Control': `public, s-maxage=${60 * 2}, max-age=${50 * 2}`, // seconds 'Content-Type': 'application/octet-stream', });