fix: remove leftover --wasm-split flag from dx serve dev command

Amends the wasm-split rollback by also cleaning up the dev server
flag that was missed in the previous revert commit.
This commit is contained in:
xfy 2026-06-04 17:46:44 +08:00
parent f81656bb18
commit 0dbd07198b

View File

@ -19,7 +19,7 @@ dev:
@tailwindcss -i input.css -o public/style.css --watch & \
TAILWIND_PID=$$!; \
trap 'kill $$TAILWIND_PID 2>/dev/null; exit' INT TERM EXIT; \
dx serve --addr 0.0.0.0 --wasm-split
dx serve --addr 0.0.0.0
css:
@tailwindcss -i input.css -o public/style.css