From 630a886811f73c392a82b266774c979c21c25cc0 Mon Sep 17 00:00:00 2001 From: Yuto Takano Date: Mon, 2 Dec 2024 15:18:30 +0100 Subject: [PATCH] Add viewport meta tag for better mobile scaling --- src/root.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/root.tsx b/src/root.tsx index aeaf788..0140426 100644 --- a/src/root.tsx +++ b/src/root.tsx @@ -46,6 +46,10 @@ export const meta: MetaFunction = () => { name: "description", content: "Get rewards for completing Advent of Code challenges!", }, + { + name: "viewport", + content: "width=device-width, initial-scale=1", + }, ]; };