hugo-theme-minima/Makefile
2021-08-07 22:01:03 +08:00

13 lines
No EOL
219 B
Makefile

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