Files
warp/script/wasm/dev-index.html
2026-04-28 08:43:33 -05:00

34 lines
573 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>warp</title>
<style type="text/css">
body {
margin: 0px;
background-color: black;
}
canvas {
display: block;
width: 100vw;
height: 100vh;
height: 100svh;
outline: none;
}
</style>
</head>
<body>
<script type="module">
import init from "/assets/client/wasm/warp.js";
window.addEventListener("load", () => {
init();
});
</script>
</body>
</html>