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