Files
website/app/Makefile
2025-07-24 06:15:19 +03:00

16 lines
141 B
Makefile

all:
npm run build
run:
npm run dev
format:
npm run format
clean:
rm -rf build
rm $(NF_CSS)
rm $(NF_WOFF)
.PHONY: format run clean