Files
website/makefile
T
2025-11-02 09:59:50 +01:00

13 lines
226 B
Makefile

BASE_URL := https://agres.online/
build:
cd blog && hugo --cleanDestinationDir --minify -b $(BASE_URL)
serve:
cd blog && hugo serve -D --cleanDestinationDir
clean:
cd blog && rm -rf ./public/*
.PHONY: build serve clean