-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (24 loc) · 1018 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
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 property="og:type" content="website" />
<meta property="og:site_name" content="Vite App" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Vite App" />
<meta property="og:description" content="This is a Vite App." />
<meta property="og:image" content="https://example.com/ogp.jpg" />
<meta property="og:image:alt" content="Vite App" />
<meta property="og:url" content="https://example.com" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="Vite App" />
<meta name="theme-color" content="#171717" />
<link rel="icon" href="/favicon.ico" />
<title>Vite App</title>
</head>
<body class="dark:bg-gray-900 dark:text-white">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>