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

17 lines
391 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,
turbopackFileSystemCacheForDev: true
}
}
export default nextConfig