From 50b2519bb8b6f08e2fa35a68ea42da835b773538 Mon Sep 17 00:00:00 2001 From: Milo Schwartz Date: Sun, 6 Oct 2024 20:03:53 -0400 Subject: [PATCH] disable eslint in build mode bc it's annoying --- next.config.mjs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 4678774e..b9d73c2b 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + eslint: { + ignoreDuringBuilds: true, + } +}; export default nextConfig;