old_blog/themes/minima/Makefile

12 lines
190 B
Makefile
Raw Normal View History

2021-07-31 10:17:32 -04:00
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