-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.html
41 lines (39 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Vue TS Boilerplate</title>
<meta name="title" content="Vue TS Boilerplate" />
<meta
name="description"
content="Vue.js 3 TypeScript Boilerplate with Pinia, Vue Router and Tailwind CSS"
/>
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://metatags.io/" />
<meta property="og:title" content="Vue TS Boilerplate" />
<meta
property="og:description"
content="Vue.js 3 TypeScript Boilerplate with Pinia, Vue Router and Tailwind CSS"
/>
<meta property="og:image" content="https://picsum.photos/id/3/1200/630" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://metatags.io/" />
<meta property="twitter:title" content="Vue TS Boilerplate" />
<meta
property="twitter:description"
content="Vue.js 3 TypeScript Boilerplate with Pinia, Vue Router and Tailwind CSS"
/>
<meta property="twitter:image" content="https://picsum.photos/id/3/1200/630" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>