forked from web-devkits/webinizer-webclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (19 loc) · 777 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Webinizer</title>
<link rel="icon" href="/src/assets/icon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/src/assets/icon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/src/assets/icon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/src/assets/icon/favicon-16x16.png" />
<link rel="manifest" href="/src/assets/icon/site.webmanifest" />
<meta
name="viewport"
content="user-scalable=no, initial-scale=1, maximum-scale=2, minimum-scale=1, width=device-width" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>