-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
23 lines (20 loc) · 872 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="manifest" href="manifest.json" />
<link rel='icon' type='image/png' href='rolling-a-black.png' media="(prefers-color-scheme:no-preference)">
<link rel='icon' type='image/png' href='rolling-a-black.png' media="(prefers-color-scheme:light)">
<link rel='icon' type='image/png' href='rolling-a-white.png' media="(prefers-color-scheme:dark)">
<title>Vega transaction tool</title>
</head>
<body id="app">
<script type="module" src="/src/main.ts"></script>
<noscript>
<p>This application requires JavaScript.</p>
</noscript>
</body>
</html>