9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// Disable experimental React Compiler for now to keep build stable
|
|
reactCompiler: false,
|
|
};
|
|
|
|
export default nextConfig;
|