36 lines
861 B
HTML
36 lines
861 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
|
/>
|
|
<meta
|
|
name="mobile-web-app-capable"
|
|
content="yes"
|
|
/>
|
|
<title>title</title>
|
|
</head>
|
|
<script type="text/javascript">
|
|
const vh = window.innerHeight * 0.01;
|
|
document.documentElement.style.setProperty("--vh", `${vh}px`);
|
|
|
|
window.addEventListener("resize", () => {
|
|
const vh = window.innerHeight * 0.01;
|
|
document.documentElement.style.setProperty("--vh", `${vh}px`);
|
|
});
|
|
</script>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<noscript>
|
|
<strong> no script</strong>
|
|
</noscript>
|
|
<script
|
|
type="module"
|
|
src="/src/main.ts"
|
|
></script>
|
|
</body>
|
|
</html>
|