generated from doinel1a/vite-react-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (34 loc) · 1.37 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
30
31
32
33
34
35
36
37
38
<!doctype html>
<html lang="en">
<head>
<!-- ESSENTIAL -->
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- GENERAL -->
<title>%TITLE%</title>
<meta name="title" content="%TITLE%" />
<meta name="application-name" content="%TITLE%" />
<meta name="description" content="%DESCRIPTION%" />
<meta name="keywords" content="%KEYWORDS%" />
<link rel="manifest" href="/app.webmanifest" />
<link rel="icon" sizes="192x192" href="/favicon/favicon-192.webp" />
<link rel="icon" sizes="512x512" href="/favicon/favicon-512.webp" />
<!-- GOOGLE -->
<meta name="rating" content="General" />
<meta name="robots" content="index,follow" />
<!-- iOS -->
<link rel="apple-touch-icon" href="/favicon/favicon-512.webp" />
<link rel="mask-icon" href="/favicon/favicon-512.webp" color="black" />
<meta name="apple-mobile-web-app-title" content="%TITLE%" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- ANDROID -->
<meta name="theme-color" content="#000" />
<meta name="mobile-web-app-capable" content="yes" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>