Files
hypixel-stats/next.config.ts
2025-09-08 23:52:53 +02:00

19 lines
408 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: process.env.DOCKER === "1" ? "standalone" : undefined,
typedRoutes: true,
eslint: {
ignoreDuringBuilds: true
},
experimental: {
useCache: true,
reactCompiler: {
compilationMode: "all"
},
browserDebugInfoInTerminal: true
}
}
export default nextConfig