From 4ba7e5cf0fdd40016515342af13cea5a18bda14e Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Thu, 23 Mar 2023 18:28:23 +0100 Subject: [PATCH] Fix css minifying (#15912) --- build-scripts/bundle.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/build-scripts/bundle.js b/build-scripts/bundle.js index b7517720bc..fd4070ea59 100644 --- a/build-scripts/bundle.js +++ b/build-scripts/bundle.js @@ -70,12 +70,7 @@ module.exports.htmlMinifierOptions = { removeComments: true, removeRedundantAttributes: true, minifyCSS: { - level: { - 1: { - all: false, - removeWhitespace: true, - }, - }, + compatibility: "*,-properties.zeroUnits", }, };