/** @type {import('next').NextConfig} */ const nextConfig = { serverExternalPackages: ['puppeteer-core'], output: 'standalone', productionBrowserSourceMaps: true, eslint: { // Warning: This allows production builds to successfully complete even if // your project has ESLint errors. ignoreDuringBuilds: true, }, typescript: { // Warning: This allows production builds to successfully complete even if // your project has TypeScript errors. ignoreBuildErrors: true, }, }; export default nextConfig;