8 lines
96 B
Makefile
8 lines
96 B
Makefile
|
.PHONY: build
|
||
|
build:
|
||
|
npm run build
|
||
|
|
||
|
.PHONY: run
|
||
|
run: build
|
||
|
cd build && python3 -m http.server
|