10 lines
285 B
TypeScript
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;
|