add explicit port

This commit is contained in:
Azizul Karim 2025-01-31 16:37:52 +06:00
parent cce26d1900
commit a675550a72
No known key found for this signature in database
GPG key ID: EC7B9BE87276BA4B

View file

@ -21,7 +21,7 @@ endif
serve:
ifeq ($(DEBUG),1)
elm-go src/Main.elm --dir=../public --start-page=index.html -- --output=../public/elm.min.js
elm-go src/Main.elm --port=8000 --dir=../public --start-page=index.html -- --output=../public/elm.min.js
else ifeq ($(RELEASE),1)
$(error Cannot use serve target with RELEASE=1)
endif