From cce26d1900f99ce4376c385e4b529034d5617a9d Mon Sep 17 00:00:00 2001 From: Azizul Karim Date: Fri, 31 Jan 2025 16:27:51 +0600 Subject: [PATCH] fix reloading for port 8000 --- frontend/Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/frontend/Makefile b/frontend/Makefile index 753cc99..4bbefe6 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -21,16 +21,7 @@ endif serve: ifeq ($(DEBUG),1) - elm-go src/Main.elm \ - --dir=../public \ - --port=8000 \ - --start-page=../public/index.html \ - --host=localhost \ - --proxy-prefix=/ \ - --proxy-host=http://localhost:8080 \ - -- \ - --debug \ - --output=../public/elm.min.js + elm-go src/Main.elm --dir=../public --start-page=index.html -- --output=../public/elm.min.js else ifeq ($(RELEASE),1) $(error Cannot use serve target with RELEASE=1) endif