From 82b64bb209a99d34b97d9d973a932e4f405ba2a4 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sun, 8 Dec 2024 18:25:05 +0300 Subject: [PATCH] next.config.ts: disable eslint during build --- next.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 8758e51..199b9fa 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,10 @@ import createNextIntlPlugin from 'next-intl/plugin'; const withNextIntl = createNextIntlPlugin(); -const nextConfig: NextConfig = {}; +const nextConfig: NextConfig = { + eslint: { + ignoreDuringBuilds: true, + }, +}; export default withNextIntl(nextConfig);