From 0d4173aed32dba4e1053a44655af28fdcd8b872b Mon Sep 17 00:00:00 2001 From: Andrei Kaleshka Date: Sat, 9 Dec 2023 17:56:22 +0100 Subject: [PATCH] do not check lint on build --- next.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.js b/next.config.js index fb2f91d..4c6abf5 100644 --- a/next.config.js +++ b/next.config.js @@ -4,6 +4,11 @@ const nextConfig = {}; if (process.env.NODE_ENV === 'production') { nextConfig.output = 'export'; nextConfig.assetPrefix = 'https://get.budgetingkid.com'; + nextConfig.eslint = { + // Warning: This allows production builds to successfully complete even if + // your project has ESLint errors. + ignoreDuringBuilds: true, + }; } module.exports = nextConfig;