Run tailwindcss before dx build in flake

This commit is contained in:
2026-06-11 19:23:01 -04:00
parent 745deb8809
commit d9d5e4bd9e

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
'';