-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
30 lines (25 loc) · 1.16 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/favicon.ico"/>
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Idle Ant Farm</title>
<meta name="google-adsense-account" content="ca-pub-1629394092880611">
<script src="https://kit.fontawesome.com/fc0afb991c.js" crossorigin="anonymous"></script>
<meta content='yes' name='apple-mobile-web-app-capable'/>
<meta content='yes' name='mobile-web-app-capable'/>
<meta rel="manifest" href="/manifest.webmanifest">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body class="font-sans bg-gray-50">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>