feat: index.html toegevoegd die gebouwde wasm kan gebruiken
gitea/double-pendulum/pipeline/head This commit looks good

This commit is contained in:
2026-09-05 17:49:34 +02:00
parent db021cb24b
commit 26a9a9b8d0
+16
View File
@@ -0,0 +1,16 @@
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
</head>
<body>
<script type="module">
import init from './double-pendulum.js';
async function run() {
await init();
}
run();
</script>
</body>
</html>