diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 50b7b379956..683c450ab89 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -1,4 +1,4 @@ -import { Metadata } from "next"; +import { Metadata, Viewport } from "next"; import Script from "next/script"; // styles import "@/styles/globals.css"; @@ -28,6 +28,15 @@ export const metadata: Metadata = { }, }; +export const viewport: Viewport = { + minimumScale: 1, + initialScale: 1, + maximumScale: 1, + userScalable: false, + width: "device-width", + viewportFit: "cover", +}; + export default function RootLayout({ children }: { children: React.ReactNode }) { const isSessionRecorderEnabled = parseInt(process.env.NEXT_PUBLIC_ENABLE_SESSION_RECORDER || "0"); @@ -51,10 +60,6 @@ export default function RootLayout({ children }: { children: React.ReactNode }) - {/* preloading */}