Files
website/app/Makefile
2025-07-24 14:11:08 +03:00

14 lines
112 B
Makefile

all:
npm run build
run:
npm run dev
format:
npm run format
clean:
rm -rf build
.PHONY: format run clean