diff --git a/src/app/chat/layout.tsx b/src/app/chat/layout.tsx index 275a186c..048d0789 100644 --- a/src/app/chat/layout.tsx +++ b/src/app/chat/layout.tsx @@ -1,7 +1,12 @@ +import type { Viewport } from "next"; import type { ReactNode } from "react"; import { ChatRouteProviders } from "@/providers/chat-route-providers"; +export const viewport: Viewport = { + interactiveWidget: "resizes-content", +}; + export default function ChatLayout({ children }: { children: ReactNode }) { return {children}; }