Skip to content

Commit

Permalink
feat: set viewport meta
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Jul 23, 2024
1 parent 68e1042 commit 46788e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ export function Layout({ children }: { children: ReactNode }) {
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"
/>
<Meta />
<Links />
</head>
Expand Down

0 comments on commit 46788e4

Please sign in to comment.