-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
35 lines (34 loc) · 897 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="apple-touch-icon" href="/logo.svg" />
<link rel="manifest" href="/manifest.json" />
<title>ArgueMapper</title>
<style>
:root {
--app-height: 100%;
}
</style>
<script>
// Vite does not inject the variables `global` and `g`, thus we define them here
window.global ||= window;
window.g ||= window;
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div
id="root"
style="
margin: 0;
padding: 0;
height: 100vh;
height: -webkit-fill-available;
"
></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>