-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.8 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/Swipytics/icon.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>Swipytics: The Simplest On-the-fly Exploratory Analysis</title>
<meta name="description" content="The Simplest On-the-fly Exploratory Analysis" />
<!-- PWA -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Swipytics" />
<meta name="application-name" content="Swipytics" />
<meta name="theme-color" content="#EDF2F7" />
<link rel="mask-icon" href="/Swipytics/icon.svg" color="#171923" />
<meta name="msapplication-navbutton-color" content="#white" />
<meta name="apple-mobile-web-app-status-bar-style" content="white" />
<meta name="msapplication-starturl" content="/Swipytics" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="apple-touch-icon" href="/Swipytics/icon-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="/Swipytics/icon-512x512.png" sizes="512x512" />
<link rel="stylesheet" href="/src/shared/theme/global.css" />
<!-- 캐시 컨트롤 -->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<link rel="manifest" href="/Swipytics/manifest.json" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>