-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.48 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="theme-color" content="#FFFFFF" />
<meta property="og:image" content="https://www.linklip.link/icons/logo-512x512.png" />
<meta
property="og:image"
content="https://www.linklip.link/icons/logo-512x512.png"
/>
<link rel="icon" href="icons/favicon-196x196.png" type="image/png" />
<link
rel="alternate icon"
href="icons/favicon.ico"
type="ico"
sizes="16x16"
/>
<link
rel="apple-touch-icon"
href="icons/apple-touch-icon-152x152.png"
sizes="180x180"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="manifest" href="/manifest.json" />
<title>링클립:효율적인 정보 관리를 위한 최고의 수단!</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) => {
console.log('Service worker registration succeeded:', registration);
})
.catch((error) => {
console.log('Service worker registration failed:', error);
});
} else {
console.log('Service workers are not supported.');
}
</script>
</body>
</html>