next.config.ts 156 B

12345678
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. /* config options here */
  4. reactCompiler: true,
  5. };
  6. export default nextConfig;