my-kaiqiuwang/src/index.html
kyuuseiryuu ba8dfdf973 feat: add apple-touch-icon for iOS device support
Added link to ./logo.jpg as an apple-touch-icon in index.html to
ensure proper icon display when users add the site to their home
screen on iOS devices.
2026-03-16 10:02:45 +09:00

17 lines
580 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<link rel="icon" type="image/svg+xml" href="./logo.jpg" />
<link rel="apple-touch-icon" type="image/svg+xml" href="./logo.jpg" />
<title>我的开球网</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="./frontend.tsx"></script>
<script defer src="https://umami.ksr.la/script.js" data-website-id="37f547c9-a21b-4e91-83f3-f7f1198a8793"></script>
</body>
</html>