2024-09-06 01:53:51 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<script>
|
2024-09-22 07:15:17 +00:00
|
|
|
var coverSupport =
|
|
|
|
"CSS" in window &&
|
|
|
|
typeof CSS.supports === "function" &&
|
|
|
|
(CSS.supports("top: env(a)") || CSS.supports("top: constant(a)"));
|
2024-09-06 01:53:51 +00:00
|
|
|
document.write(
|
|
|
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
2024-09-22 07:15:17 +00:00
|
|
|
(coverSupport ? ", viewport-fit=cover" : "") +
|
|
|
|
'" />'
|
|
|
|
);
|
2024-09-06 01:53:51 +00:00
|
|
|
</script>
|
2024-09-22 07:15:17 +00:00
|
|
|
|
2024-09-06 01:53:51 +00:00
|
|
|
<title></title>
|
|
|
|
<!--preload-links-->
|
|
|
|
<!--app-context-->
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-09-22 07:15:17 +00:00
|
|
|
<div id="app"><!--app-html-->
|
|
|
|
</div>
|
2024-09-06 01:53:51 +00:00
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
2024-09-22 07:15:17 +00:00
|
|
|
|
|
|
|
|