import type { NextConfig } from "next" const nextConfig: NextConfig = { eslint: { ignoreDuringBuilds: true }, experimental: { reactCompiler: { compilationMode: "all" }, browserDebugInfoInTerminal: true } } export default nextConfig