summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 08d33b280be1d49dc784a986fa1cac3446aaba3a (plain)
1
2
3
4
5
6
7
# the --target is currently necessary or firefox will return
# "disallowed mime type" -bjc 7-aug-2025
build:
	wasm-pack build --target web --out-dir site/wasm

serve: build
	(cd site && python -m http.server 8118)