From 0dbd07198b889c5e63236789d208bafb0a4668fb Mon Sep 17 00:00:00 2001 From: xfy Date: Thu, 4 Jun 2026 17:46:44 +0800 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0fcf388..4b8bb22 100644 --- a/Makefile +++ b/Makefile @@ -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