-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (47 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-EFVVMFYVP9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-EFVVMFYVP9');
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue 3 UnicornLog</title>
<meta name="description"
content="Vue 3 Unicorn Log. A magical 🦄 plugin to make coloring the console output easier and more flexible." />
<meta name="keywords"
content="vue3-unicorn-log, vue-unicorn-log, unicorn-log, vue, vue3, plugin, console, devtools unicorn, logging, log javascript, magical, webdevnerdstuff, wdns" />
<meta name="author" content="WebDevNerdStuff & Bunnies... lots and lots of bunnies!" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="theme-color" content="#f01d7f" />
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="Vue 3 UnicornLog">
<meta property="og:description"
content="Vue 3 Unicorn Log. A magical 🦄 plugin to make coloring the console output easier and more flexible.">
<meta property="og:url" content="https://webdevnerdstuff.github.io/vue3-unicorn-log/">
<meta property="og:image" content="https://webdevnerdstuff.github.io/vue3-unicorn-log/vue3-unicorn-log-social.jpg">
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Henny+Penny&family=Indie+Flower&display=swap" rel="stylesheet">
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🦄</text></svg>">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>