17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
experimental: {
|
|
reactCompiler: {
|
|
compilationMode: "all"
|
|
},
|
|
browserDebugInfoInTerminal: true
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|