-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
22 lines (22 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>_TITLE_</title>
<meta name="theme-color" content="#ffffff" />
<meta name="msapplication-TileColor" content="#2d89ef" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/favicon/180x180.png" />
<link rel="mask-icon" href="/img/favicon/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="icon" type="image/png" sizes="32x32" href="/img/favicon/32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon/16x16.png" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
</body>
</html>