Files
holacompi/next.config.ts
Haitham Khalifa b538d84e17 Initial commit
2026-02-16 12:18:06 +01:00

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;