forked from misode/misode.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 859 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 859 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
function gtag() {}
</script>
<script>
(() => {
const theme = localStorage.getItem('theme')
const prefersLight = matchMedia('(prefers-color-scheme: light)').matches
if (theme === 'system' ? !prefersLight : theme !== 'light') {
document.documentElement.classList.add('dark')
}
})()
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data Pack Generators - Minecraft 1.19, 1.20, 1.21</title>
<link rel="icon" href="/src/favicon-32.png" sizes="32x32">
<script>
if (typeof BigInt !== 'function') {
BigInt = function(e) { return e }
}
if (typeof BigInt64Array !== 'function') {
BigInt64Array = function() { }
}
</script>
</head>
<body>
<script src="./src/app/Main.tsx" type="module"></script>
</body>
</html>