From 3ebbd001e394eb4b9076ce12def6e0a522625a6d Mon Sep 17 00:00:00 2001 From: Jose Andres Date: Mon, 26 May 2025 17:35:19 +0000 Subject: [PATCH] EslintIgnore --- next.config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.ts b/next.config.ts index c819fd4..f02cbde 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { serverExternalPackages: ["pino", "pino-pretty"], + eslint: { + ignoreDuringBuilds: true, + } }; export default nextConfig;