From 165681b3cac6e74bd742da28f3effbda7982c67d Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 22 Oct 2024 00:37:15 +0300 Subject: [PATCH] feat: justfile serve and watch-css --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index 943fad7..5267f5f 100644 --- a/justfile +++ b/justfile @@ -4,3 +4,9 @@ _default: build: tailwindcss -i ./css/style.css -o ./static/css/style.css --minify zola build + +serve: + zola serve + +watch-css: + tailwindcss -i ./css/style.css -o ./static/css/style.css --minify --watch -- 2.44.1