diff --git a/app/layout.tsx b/app/layout.tsx index 573ed322..a6048171 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import type { Metadata } from "next"; +import type { Metadata, Viewport } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import { headers } from "next/headers"; import { getLocale } from "next-intl/server"; @@ -17,6 +17,11 @@ const geistMono = Geist_Mono({ subsets: ["latin"], }); +export const viewport: Viewport = { + width: "device-width", + initialScale: 1, +}; + export async function generateMetadata(): Promise { await configManager.ensureLoaded(); const faviconUrl = configManager.get("faviconUrl", "/branding/Bulwark_Favicon.svg");