Run tailwindcss before dx build in flake

This commit is contained in:
2026-06-11 19:23:01 -04:00
parent bd378e1359
commit 2118a37400

View File

@@ -110,6 +110,9 @@
] ++ build-pkgs;
buildPhase = ''
# dx build will run tailwindcss anyways, but doing it first here is faster and clearer if it fails
tailwindcss --input style/tailwind.css --output assets/tailwind.css
dx build --release --frozen --web
'';