From 6086e1903cfc1e485a5e4a13b6f5c9083cafc83d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=B6rdle=20Bot?= Date: Sat, 22 Nov 2025 17:42:20 +0100 Subject: [PATCH] Fix audio file caching to allow immediate playback of newly uploaded songs --- next.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 8e3c525..9f2fc56 100644 --- a/next.config.ts +++ b/next.config.ts @@ -27,7 +27,7 @@ const nextConfig: NextConfig = { }, { key: 'Cache-Control', - value: 'public, max-age=31536000, immutable', + value: 'public, max-age=3600, must-revalidate', }, ], },