Files
blog/next.config.ts
2025-12-02 12:41:54 +07:00

9 lines
156 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
};
export default nextConfig;