diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 00000000..66e15661 --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,8 @@ +import type { NextConfig } from "next"; + +const nextConfig: NextConfig = { + /* config options here */ + reactCompiler: true, +}; + +export default nextConfig;