19 lines
523 B
HTML
19 lines
523 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>wasm testing</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module">
|
|
// If you're getting build errors here | you need to run `just build_client_bundle` first, to compile client code
|
|
// v
|
|
import init from "./dist/client.js";
|
|
|
|
init().then(() => {
|
|
// wasm-pack code here
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |