-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (34 loc) · 1.51 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- Not ready for this. We aren't installing PWAs on mobile. -->
<!-- <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> -->
<link rel="icon" type="image/png" sizes="32x32" href="/icon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/icon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<!-- add to homescreen for ios -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Foundry for Tunes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- This sets the color of the address bar in the PWA -->
<meta name="theme-color" content="#8b5cf6" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1" /> -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, viewport-fit=cover"
/>
<meta
name="description"
content="Foundry for Tunes is a cloud music hosting and streaming service for your personal audio file collection."
/>
<title>Foundry for Tunes</title>
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>