Update conf

This commit is contained in:
Florian RICHER 2023-04-02 14:47:50 +02:00
parent eae044e1f4
commit 88f8d83317
6 changed files with 14 additions and 7 deletions

7
build_css Executable file
View file

@ -0,0 +1,7 @@
#!/usr/bin/env nu
if $env.TRUNK_PROFILE == "debug" {
npx tailwindcss -i stylesheets/index.css -o $"($env.TRUNK_STAGING_DIR)/tailwind.css"
} else {
npx tailwindcss -i stylesheets/index.css -o $"($env.TRUNK_STAGING_DIR)/tailwind.css" --minify
}