forked from scrtlabs/dash.scrt.network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 770 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Secret Dashboard</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="prefetch" href="https://scrt.network" />
<!-- WHIP-003 definitions -->
<!-- <link rel="prefetch" as="fetch" href="/whip-003.json" data-whip-003 /> -->
</head>
<body>
<div
id="root"
class="bg-slate-100 dark:bg-neutral-900 text-black dark:text-white"
></div>
<script>
// fix the keplr window type error when there are no node polyfills
var global = global || window;
</script>
<script type="module">
import { Buffer } from "buffer";
window.Buffer = Buffer;
</script>
<script type="module" src="/src/App.tsx"></script>
</body>
</html>