starcraft-tg-webapp/index.html

29 lines
911 B
HTML
Raw Normal View History

2024-07-18 18:51:17 +08:00
<!--
* @LastEditors: John
* @Date: 2024-07-18 14:40:44
2024-07-22 18:16:42 +08:00
* @LastEditTime: 2024-07-22 18:14:52
2024-07-18 18:51:17 +08:00
* @Author: John
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
2024-07-22 18:16:42 +08:00
<link rel="icon" type="image/svg+xml" href="/starcraft.svg" />
2024-07-18 18:51:17 +08:00
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="MobileOptimized" content="176" />
<meta name="HandheldFriendly" content="True" />
<meta name="robots" content="noindex,nofollow" />
2024-07-22 18:16:42 +08:00
<title>starcraft tg webapp</title>
2024-07-18 18:51:17 +08:00
<script src="https://telegram.org/js/telegram-web-app.js?1"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>