ioneye/web/index.html

19 lines
523 B
HTML
Raw Normal View History

2023-04-08 22:26:14 +00:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<title>wasm testing</title>
</head>
<body>
<script type="module">
2023-04-09 00:54:44 +00:00
// If you're getting build errors here | you need to run `just build_client_bundle` first, to compile client code
// v
2023-04-09 15:25:42 +00:00
import init from "./dist/client.js";
2023-04-08 22:26:14 +00:00
init().then(() => {
2023-04-09 15:25:42 +00:00
// wasm-pack code here
2023-04-08 22:26:14 +00:00
})
</script>
</body>
</html>