From 2118a37400869b156632a845e4b991875c61e853 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Thu, 11 Jun 2026 19:23:01 -0400 Subject: [PATCH] Run tailwindcss before dx build in flake --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index 4bafdb0..655d552 100644 --- a/flake.nix +++ b/flake.nix @@ -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 '';