mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 22:31:14 +00:00

Replace webpack, which needs a configuration file, etc. with parcel, which requires none. Just "parcel index.html" and it'll figure out the rest :-)
11 lines
238 B
HTML
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>
|