-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (32 loc) · 1.19 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta property="og:image" content="ogImage.png" />
<meta property="og:site_name" content="Canvas Diary" />
<meta property="og:description" content="감정을 그리는 일기, 캔버스 일기" />
<link rel="icon" href="icons/favicon.ico" />
<link rel="alternate icon" href="icons/favicon.ico" type="ico" sizes="32x32" />
<link rel="apple-touch-icon" href="icons/favicon-150x150.png" sizes="152x152" />
<link rel="manifest" href="manifest.json" />
<title>Canvas Diary</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
if ("serviceWorker" in navigator) {
// Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker
.register("/sw.js")
.then((registration) => {})
.catch((err) => {});
} else {
}
</script>
</body>
</html>