17 lines
411 B
HTML
Raw Normal View History

<!doctype html>
<html lang="en">
<body style="margin: 0px;">
<canvas id="bevy-canvas1" width="100vw" height="100vh"></canvas>
<script type="module">
import init from './bevyanim.js'
init().catch((error) => {
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) {
throw error;
}
});
</script>
</body>
</html>