From ebfa8dcdb01d5234347acab9f8291792e2402d6b Mon Sep 17 00:00:00 2001 From: muken Date: Sun, 28 Jun 2026 22:36:43 +0000 Subject: [PATCH] fix: disable edge/html caching for now so deployments are visible immediately --- next.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/next.config.js b/next.config.js index f83dccb..dfee7f8 100644 --- a/next.config.js +++ b/next.config.js @@ -2,6 +2,16 @@ const nextConfig = { reactStrictMode: true, output: 'standalone', + async headers() { + return [ + { + source: '/:path*', + headers: [ + { key: 'Cache-Control', value: 'no-cache, no-store, must-revalidate' }, + ], + }, + ]; + }, }; module.exports = nextConfig;