-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<link
rel="apple-touch-icon"
href="icons/maskable_icon_x48.png"
sizes="48x48"
/>
<meta name="theme-color" content="#ffffff" />
<!-- 파일 수정 후에도 브라우저에 캐싱된 파일 반영되는 현상 막기 위함 -->
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<link rel="icon" href="icons/maskable_icon_x48.png" sizes="48x48" />
<link rel="icon" href="icons/maskable_icon_x72.png" sizes="72x72" />
<link rel="icon" href="icons/maskable_icon_x96.png" sizes="96x96" />
<link rel="icon" href="icons/maskable_icon_x128.png" sizes="128x128" />
<link rel="icon" href="icons/maskable_icon_x192.png" sizes="192x192" />
<link rel="icon" href="icons/maskable_icon_x384.png" sizes="384x384" />
<link rel="icon" href="icons/maskable_icon_x512.png" sizes="512x512" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>숨 - 하루 5분의 숨통, 당신만의 해방일지</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>