hugo-theme-minima/Makefile

12 lines
190 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:
2021-07-21 06:12:51 +02:00
hugo -D --gc --minify -s $(source) --themesDir ../
2021-07-18 15:40:40 +02:00
clean:
rm -r $(source)/public