Files
doux-copy/build-wasm.sh
2026-01-18 15:39:46 +01:00

14 lines
340 B
Bash
Executable File

#!/bin/bash
set -e
echo "Building WASM..."
cargo build --target wasm32-unknown-unknown --release --no-default-features
echo "Copying to website/static/..."
cp target/wasm32-unknown-unknown/release/doux.wasm website/static/doux.wasm
echo "Verifying..."
ls -la website/static/doux.wasm
echo ""
echo "Done! WASM updated in website/static/"