-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (51 loc) · 1.17 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<title>Website</title>
<link rel="icon" href="/favicon.ico" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<style>
html,
body {
margin: 0px;
padding: 0px;
}
#app > #load {
height: 100vh;
display: flex;
overflow: hidden;
align-items: center;
justify-content: center;
background-color: #0f111f;
}
#app > #load > img {
width: 100%;
}
</style>
<script>
window.module = {};
window.exports = {};
window.global = window;
</script>
<script type="module">
import process from "process";
import { Buffer } from "buffer";
import EventEmitter from "events";
window.Buffer = Buffer;
window.process = process;
window.EventEmitter = EventEmitter;
</script>
</head>
<body>
<div id="app">
<div id="load">
<img src="./src/assets/images/load.gif" />
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>