Files
copilotkit__copilotkit/examples/showcases/mcp-apps/next.config.ts
2026-03-12 13:06:02 -07:00

10 lines
285 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Disable React strict mode to prevent double-rendering issues with MCP Apps
// The MCPAppsActivityRenderer creates duplicate iframes in strict mode
reactStrictMode: false,
};
export default nextConfig;