From 326745e71792e335c274d2e2064e94dfa3b31847 Mon Sep 17 00:00:00 2001 From: g_it Date: Sun, 15 Mar 2026 13:40:44 +0100 Subject: [PATCH] Level 2 minification for CSS. --- minify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minify.py b/minify.py index 99e1a90..49cb390 100755 --- a/minify.py +++ b/minify.py @@ -11,7 +11,7 @@ DEPLOY_DIR = Path("./deploy") def minify_css(content): result = subprocess.run( - ["cleancss"], + ["cleancss", "--level", "1"], input=content, capture_output=True, text=True,