35 lines
607 B
HTML
35 lines
607 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>wasm_test</title>
|
|
<style>
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#canvas {
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
<link rel="icon" href="data:,">
|
|
|
|
<script type="module">
|
|
import init, {init_index} from "/pkg/frontend.js";
|
|
await init().catch((err) => {
|
|
console.error("Failed to initialize WASM", err);
|
|
});
|
|
init_index();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
</body>
|
|
</html>
|