wisatin/next.config.ts
2025-12-06 08:37:34 +07:00

10 lines
181 B
TypeScript

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