next.config.ts 181 B

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