-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>프론트엔드 개발자 엄성준 포트폴리오</title>
<meta
name="description"
content="꾸준함이 강점이자 자랑인 프론트엔드 개발자 엄성준 포트폴리오입니다."
/>
<meta
name="keywords"
content="프론트엔드 개발자, 엄성준, 포트폴리오, frontend developer, umsungjun, portfolio"
/>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="google-site-verification"
content="FkVxpqkKnBQlSm1tgTF-GyQP0GLfhX_z03E6h21lipo"
/>
<meta
name="naver-site-verification"
content="431567b1f0ba28d9a33aad2877a6b21bbf4c8a56"
/>
<link rel="manifest" href="/manifest.json" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker
.register("/sw.js")
.then((registration) => {
console.log("Service worker registration succeeded:", registration);
})
.catch((err) => {
console.log("Service worker registration failed:", error);
});
} else {
console.log("Service workers are not supported.");
}
</script>
</body>
</html>