hugo-theme-minima/Makefile
2021-07-21 12:12:51 +08:00

12 lines
No EOL
190 B
Makefile

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