Files
hypixel-stats/next.config.ts
2025-09-03 13:40:09 +02:00

19 lines
375 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
eslint: {
ignoreDuringBuilds: true
},
images: {
remotePatterns: [new URL("https://minotar.net/**")]
},
experimental: {
reactCompiler: {
compilationMode: "all"
},
browserDebugInfoInTerminal: true
}
}
export default nextConfig