From ae25f003f9388e9bb6f9a88763e281ac82de5027 Mon Sep 17 00:00:00 2001 From: Anish Acharya Date: Mon, 4 Sep 2023 09:25:00 -0700 Subject: [PATCH] Remove eslint checks during build --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 3979142d..1c3577ab 100644 --- a/next.config.js +++ b/next.config.js @@ -31,6 +31,9 @@ const nextConfig = { }, ], }, + eslint: { + ignoreDuringBuilds: true, + } }; module.exports = nextConfig;