-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·32 lines (29 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>%VITE_TITLE%</title>
<meta name="keywords" content="%VITE_KEYWORDS%" />
<meta name="description" content="%VITE_DESCRIPTION%" />
<meta name="google-site-verification" content="zKN71aDR8fI0j9EiVARrX4hcY4FdWxqcVqRvw8z7d5U" />
<!-- add favicon -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="icon" href="/icon-512x512.png" type="image/png" sizes="512x512" />
<meta name="theme-color" content="%VITE_THEME_COLOR%" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YBMKGXKVCF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', '%VITE_GOOGLE_ANALYTICS_ID%');
</script>
</head>
<body class="bg-slate-200 text-slate-900 dark:bg-slate-800 dark:text-slate-200" data-base="%VITE_BASENAME%"
id="%VITE_MAIN_DOM%">
<!-- dynamic scripts -->
<script type="module" src="/src/index.tsx"></script>
</body>
</html>