/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, experimental: { serverActions: true, }, output: "standalone", // eslint: { // ignoreDuringBuilds: true, // }, async headers() { return [ { source: "/(.*)", headers: [ { key: "Cache-Control", value: "no-store, max-age=0", }, ], }, ]; }, }; module.exports = nextConfig;