Files
hypixel-stats/next.config.ts
2025-09-05 13:07:12 +02:00

17 lines
320 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "standalone",
eslint: {
ignoreDuringBuilds: true
},
experimental: {
reactCompiler: {
compilationMode: "all"
},
browserDebugInfoInTerminal: true
}
}
export default nextConfig