17 lines
391 B
TypeScript
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
|