/** @type {import('next').NextConfig} */ 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;