summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f37f0ac..08d33b2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
# the --target is currently necessary or firefox will return
# "disallowed mime type" -bjc 7-aug-2025
build:
- wasm-pack build --target web
+ wasm-pack build --target web --out-dir site/wasm
serve: build
- python -m http.server 8118
+ (cd site && python -m http.server 8118)