generated from gnomeria/preact-vite-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
25 lines (25 loc) · 915 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
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="/icons8-tick-box.svg">
<meta name="description" content="A simple Todo App using Vite + Preact + Typescript + Tailwind CSS + ReduxZero">
<meta name="theme-color" content="#673ab8"/>
<link rel="manifest" href="/manifest.json">
<title>TodoApp</title>
<link rel="icon" href="/icons8-tick-box.svg">
</head>
<body>
<div id="app"></div>
<!-- Install button, hidden by default -->
<div id="installContainer" className="hidden">
<button id="butInstall" type="button">
Install
</button>
</div>
<script type="module" src="/index.tsx"></script>
</body>
</html>