hugo-theme-minima/Makefile

13 lines
208 B
Makefile
Raw Normal View History

2021-07-18 15:40:40 +02:00
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