diff --git a/next.config.mjs b/next.config.mjs index c17e3ee..c5c0fa3 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,11 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - 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, }, output: "export", reactStrictMode: true,