Removed eslint on build

This commit is contained in:
2025-09-02 18:52:10 +02:00
parent dad593079e
commit a76375897b

View File

@@ -1,6 +1,9 @@
import type { NextConfig } from "next" import type { NextConfig } from "next"
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: true
},
images: { images: {
remotePatterns: [new URL("https://minotar.net/**")] remotePatterns: [new URL("https://minotar.net/**")]
}, },
@@ -12,4 +15,3 @@ const nextConfig: NextConfig = {
} }
export default nextConfig export default nextConfig