forked from FC-Chilli-Bubble/front-officener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 1.56 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
56
57
58
59
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/icons/favicon-16x16.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no" />
<title>오피스너</title>
<!-- PWA -->
<link
rel="manifest"
href="/public/manifest.json" />
<link
rel="apple-touch-icon"
href="/public/icons/logo-152x152.png" />
<meta
name="apple-mobile-web-app-capable"
content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black" />
<meta
name="apple-mobile-web-app-title"
content="오피스너" />
<meta
name="theme-color"
content="#2563EB" />
<!-- Font -->
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable-dynamic-subset.css" />
</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 => {
console.log('Service worker registration failed:', error);
});
} else {
console.log('Service workers are not supported.');
}
</script>
</body>
</html>