Files
hypixel-stats/next.config.ts
2025-09-02 18:52:10 +02:00

18 lines
333 B
TypeScript

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