generated from yukinissie/react-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
55 lines (53 loc) · 1.62 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/src/static/favicon.ico"
width="150px"
height="130px"
/>
<meta name="author" content="marinworldniitibantikaidaigaku" />
<meta
name="description"
content="「御魚 なぞの カタカナ」は、お魚の英名を答えるクイズです。"
/>
<meta
name="keywords"
content="御魚,お魚,魚,謎,なぞ,カタカナ,かたかな,クイズ,マリンワールド,サメ,さめ,鮫"
/>
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>御魚 なぞの カタカナ</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<!-- PWA -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker
.register('./serviceWorker.js')
.then((reg) => console.log('サービスワーカーの登録成功', reg.scope))
.catch((err) => console.log('サービスワーカーの登録失敗', err))
})
}
</script>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-YGGTJRS2VJ"
></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-YGGTJRS2VJ')
</script>
</body>
</html>