forked from greatvivek11/TodoApp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 1.07 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
<!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>
<!-- <p id="requireHTTPS" class="hidden">
<b>STOP!</b> This page <b>must</b> be served over HTTPS.
Please <a href="/">reload this page via HTTPS</a>.
</p>
< -- Install button, hidden by default -- >
<div id="installContainer" class="hidden">
<button id="butInstall" type="button">
Install
</button>
</div> -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>