/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, experimental: { serverActions: true, serverComponentsExternalPackages: ['@prisma/client'], }, output: "standalone", staticPageGenerationTimeout: 180, // tingkatkan menjadi 3 menit eslint: { ignoreDuringBuilds: true, }, webpack: (config, { isServer }) => { if (isServer) { config.externals = config.externals || []; config.externals.push('@prisma/client'); } return config; }, // async headers() { // return [ // { // source: "/(.*)", // headers: [ // { // key: "Cache-Control", // value: "no-store, max-age=0", // }, // ], // }, // ]; // }, }; module.exports = nextConfig;