slint/examples/printerdemo/wasm/index.html
Simon Hausmann 50eafc3fd7 Simplify wasm builds
Replace webpack, which needs a configuration file, etc. with parcel,
which requires none. Just "parcel index.html" and it'll figure out the
rest :-)
2020-08-11 14:22:52 +02:00

11 lines
238 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My Rust + Webpack project!</title>
</head>
<body>
<canvas id="canvas" width="640" height="480"></canvas>
<script src="index.js"></script>
</body>
</html>