1
Fork 0
mirror of https://github.com/Steffo99/todocolors.git synced 2024-11-22 16:24:19 +00:00

Fix mobile viewport

This commit is contained in:
Steffo 2023-08-05 13:17:54 +02:00
parent 7e24c46161
commit b6d01acd2c
Signed by: steffo
GPG key ID: 2A24051445686895

View file

@ -13,7 +13,7 @@ export const metadata: NextMetadata = {
applicationName: "Todoblue", applicationName: "Todoblue",
title: "Home", title: "Home",
description: "Self-hosted multiplayer todo app", description: "Self-hosted multiplayer todo app",
viewport: {userScalable: false} viewport: {initialScale: 1, width: "device-width", userScalable: false}
} }
export default function layout({children}: { children: ReactNode }) { export default function layout({children}: { children: ReactNode }) {