WebView öffnete zoomed-in → Inhalt größer als Viewport → scrollbar. maximum-scale/user-scalable=no im Viewport-Meta + text-size-adjust und touch-action: manipulation sperren Pinch-/Auto-Zoom. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
13 lines
371 B
HTML
13 lines
371 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, viewport-fit=cover" />
|
|
<title>Snakkimo</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|