Files
hypixel-stats/next.config.ts
2025-10-29 18:21:09 +01:00

16 lines
345 B
TypeScript

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