hugo-theme-minima/Makefile
2021-07-18 21:40:40 +08:00

13 lines
No EOL
208 B
Makefile

source=exampleSite
.PHONY: dev, build, clean
dev:
hugo server -D -s $(source) --themesDir ../..
build:
cd exampleSite
hugo -D --gc --minify -s $(source) --themesDir ../..
clean:
rm -r $(source)/public