-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.35 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" />
<link rel="shortcut icon" type="image/svg+xml" href="/logo.svg" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="{{ themeColor }}" />
<link rel="manifest" href="/manifest.json" />
<meta name="application-name" content="{{ shortName }}" />
<meta name="msapplication-TileColor" content="{{ themeColor }}" />
<meta name="description" content="{{ name }}" />
<meta name="version" content="{{ version }}" />
<title>{{ shortName }}</title>
<link
rel="stylesheet"
type="text/css"
href="/node_modules/bootstrap/dist/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="/node_modules/inter-ui/inter.css"
/>
<link rel="stylesheet" type="text/css" href="/index.css" />
</head>
<body>
<div id="root"></div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<script>
// @see https://github.com/aws/aws-sdk-js/issues/3673#issuecomment-855205181
var global = global || window;
var Buffer = Buffer || [];
var process = process || { env: { DEBUG: undefined }, version: [] };
</script>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>