Files
hypixel-stats/next.config.ts
2025-09-01 00:00:44 +02:00

16 lines
280 B
TypeScript

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