From 91e0369b5f4efa3076fbb71f74cf34950deb3bb3 Mon Sep 17 00:00:00 2001 From: lavanyagarg112 Date: Thu, 10 Jul 2025 22:08:34 +0800 Subject: [PATCH] Ignore eslint --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index 78841fb..df4f9e8 100644 --- a/next.config.ts +++ b/next.config.ts @@ -18,6 +18,9 @@ const nextConfig: NextConfig = { }, ], }, + eslint: { + ignoreDuringBuilds: true, + }, }; export default nextConfig;