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