-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
44 lines (40 loc) · 1.73 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
39
40
41
42
43
44
<!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>Vite ReactTS — Starter</title>
<meta name="title" content="Vite ReactTS — Starter" />
<meta name="application-name" content="Vite ReactTS — Starter" />
<meta
name="description"
content="Start a React TypeScript App, SPA, landing page or website using Vite, Babel, Core-JS, SASS / SCSS, Tailwind CSS and much more, in just 30 seconds."
/>
<meta
name="keywords"
content="typescript, ts, react-typescript, react-ts, react, template, boilerplate, vite, swc, babel, tailwind, tailwindcss, sass, scss, css, github"
/>
<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="Vite ReactTS — Starter" />
<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>