From d5da4c88f0f17892241a21ef247881fdde9f1468 Mon Sep 17 00:00:00 2001 From: itsscb Date: Tue, 3 Sep 2024 12:09:37 +0200 Subject: [PATCH] feat(frontend): minifies css generated by tailwindcss on build --- frontend/Trunk.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Trunk.toml b/frontend/Trunk.toml index f2df385..da65ecb 100644 --- a/frontend/Trunk.toml +++ b/frontend/Trunk.toml @@ -1,7 +1,7 @@ [[hooks]] stage = "build" command = "tailwindcss" -command_arguments = ["-i","input.css","-o","public/styles.css"] +command_arguments = ["-i","input.css","-o","public/styles.css","--minify"] [serve] address = "0.0.0.0"