gor-deploy/next.config.mjs
2025-07-18 18:58:46 +05:30

23 lines
647 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
},
// Enable React's production mode in both development and production
// This helps eliminate some development-only errors in the UI
reactStrictMode: true,
};
export default nextConfig;