-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 920 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
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="/dynamic-form-website/umi.css" />
<script>
window.routerBase = "/dynamic-form-website/";
</script>
<script>
//! umi version: 3.4.8
</script>
<script>
!(function () {
var e = localStorage.getItem("dumi:prefers-color"),
t = window.matchMedia("(prefers-color-scheme: dark)").matches,
r = ["light", "dark", "auto"];
document.documentElement.setAttribute(
"data-prefers-color",
e === r[2] ? (t ? r[1] : r[0]) : r.includes(e) ? e : r[0]
);
})();
</script>
</head>
<body>
<div id="root"></div>
<script src="/dynamic-form-website/umi.js"></script>
</body>
</html>