Files
hypixel-stats/next.config.ts

17 lines
361 B
TypeScript

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