This repository was archived by the owner on May 15, 2024. It is now read-only.
generated from nuxt-contrib/vue3-ssr-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
45 lines (43 loc) · 1.5 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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<meta content="portaint" name="screen-orientation"/>
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="application" name="browsermode">
<meta content="yes" name="full-screen"/>
<meta content="true" name="x5-fullscreen"/>
<meta content="app" name="x5-page-mode"/>
<meta content="true" name="360-fullscreen"/>
<link href="/favicon.ico" rel="shortcut icon"/>
<script>
const coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
CSS.supports('top: constant(a)'));
document.write(
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W2WK490RV4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W2WK490RV4');
</script>
<script defer src="https://umami.tigerkk.me/script.js"
data-website-id="00d81980-be52-4ba8-9daf-37f424062104"></script>
<!--preload-links-->
<!--app-context-->
<!--head-tags-->
<script>
window.__INITIAL_STATE__ = null;//'<!--ssr-state-->';
</script>
</head>
<body>
<div id="app"><!--app-html--></div>
<script type="module" src="/src/entry-client.js"></script>
</body>
</html>