This repository was archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (49 loc) · 1.91 KB
/
index.html
File metadata and controls
51 lines (49 loc) · 1.91 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/">
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
<link rel="preload" as="image" media="(min-width: 960px)" href="https://xue-images.pek3b.qingstor.com/62-bg_web.jpg">
<link rel="preload" as="image" media="(max-width: 959px)" href="https://xue-images.pek3b.qingstor.com/62-bg_mb.jpg">
<title>Rumsystem</title>
<!-- preflight-injection-point -->
<!-- mui-insertion-point -->
</head>
<body>
<script>
var $buoop = {required:{e:80,f:80,o:80,s:12,c:80},api:2022.05 };
function $buo_f(){
var e = document.createElement("script");
e.src = "//browser-update.org/update.min.js";
document.body.appendChild(e);
};
try {document.addEventListener("DOMContentLoaded", $buo_f,false)}
catch(e){window.attachEvent("onload", $buo_f)}
</script>
<div id="root"></div>
<script>
(() => {
const findHeadComment = (comment) => Array.from(document.head.childNodes)
.filter((v) => v.nodeType === 8)
.find((v) => v.textContent && v.textContent.includes(comment));
const injectStyleTo = (comment, style) => {
const commentNode = findHeadComment(comment);
document.head.insertBefore(style, commentNode);
};
const originalAppendChild = document.head.appendChild
document.head.appendChild = (node) => {
if (node.nodeType === 1 && node.tagName === 'STYLE') {
if (node.innerHTML.startsWith('.tailwind-base-style')) {
injectStyleTo('preflight-injection-point', node);
return
}
}
originalAppendChild.call(document.head, node)
}
})()
</script>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>