소스 검색

address comment

Ehco1996 2 년 전
부모
커밋
699fe256d0
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      makefile

+ 1 - 2
makefile

@@ -3,7 +3,7 @@ BACKEND_DIR = .
 
 .PHONY: all build-frontend start-backend
 
-all: start-frontend start-backend
+all: build-frontend start-backend
 
 build-frontend:
 	@echo "Building frontend..."
@@ -12,4 +12,3 @@ build-frontend:
 start-backend:
 	@echo "Starting backend dev server..."
 	@cd $(BACKEND_DIR) && go run main.go &
-