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;