-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- <link href="https://vjs.zencdn.net/8.0.4/video-js.css" rel="stylesheet" /> -->
<meta charset="utf-8" />
<title>Sign Language Bibles</title>
<base href="/" />
<meta name="color-scheme" content="light dark" />
<meta
name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<link rel="manifest" href="/manifest.json" />
<link
rel="shortcut icon"
type="image/png"
href="/assets/icons/icon-48.webp"
/>
<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Ionic App" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link href="./src/brightcove/vidJs.css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<!-- NOTE. We are manually vendoring in the bc player the vc player. It can be in public folder bc we don't need to transform it since it's already a min file, and putting it in src folder creates a module type mismatch since it assumes a CJS or UMD env, but not module -->
<script src="/brightcove/dotPlayer.js"></script>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>