From 0bd8c23be74fa19e55b5b98b4cfdc4e08a300a3c Mon Sep 17 00:00:00 2001 From: Alex van Andel Date: Tue, 30 Aug 2022 12:50:34 +0100 Subject: [PATCH] Proposal to turn off eslint during 'yarn / next build' (#4027) --- apps/web/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index f829e319ba..65c077d531 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -78,6 +78,9 @@ plugins.push(withAxiom); /** @type {import("next").NextConfig} */ const nextConfig = { i18n, + eslint: { + ignoreDuringBuilds: true, + }, experimental: { images: { unoptimized: true,