From a76375897b6aae0dba57a7d8dc8b572b0114f60c Mon Sep 17 00:00:00 2001 From: Taken Date: Tue, 2 Sep 2025 18:52:10 +0200 Subject: [PATCH] Removed eslint on build --- next.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 1223c4f..72e353d 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,6 +1,9 @@ import type { NextConfig } from "next" const nextConfig: NextConfig = { + eslint: { + ignoreDuringBuilds: true + }, images: { remotePatterns: [new URL("https://minotar.net/**")] }, @@ -12,4 +15,3 @@ const nextConfig: NextConfig = { } export default nextConfig -