8 lines
189 B
Makefile
8 lines
189 B
Makefile
|
.PHONY: setup dev
|
||
|
|
||
|
setup:
|
||
|
npm install
|
||
|
|
||
|
dev:
|
||
|
hugo server --disableFastRender & \
|
||
|
tailwindcss -i ./themes/gallo/src/input.css -o ./themes/gallo/static/css/tailwind.min.css --watch --minify
|