Skip to content

Commit cd9b61b

Browse files
Update Theme-Customs
Signed-off-by: Diego Andrés <[email protected]>
1 parent f77ed0b commit cd9b61b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

themecustoms/Theme/Load.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ private function css() : void
223223
[
224224
'attributes' => $options['css']['attributes'] ?? [],
225225
'external' => $options['css']['external'] ?? false,
226-
'minimize' => $options['css']['minimize'] ?? false,
226+
'minimize' => $options['css']['minimize'] ?? true,
227227
'order_pos' => $options['css']['order_pos'] ?? abs($this->order--),
228228
],
229229
'customtheme_' . $file
@@ -241,7 +241,7 @@ private function css() : void
241241
(empty($options['default']) ? 'custom/' : '') . (!is_array($options) ? $options : $file) . '.css',
242242
[
243243
'attributes' => $options['attributes'] ?? [],
244-
'minimize' => $options['minimize'] ?? false,
244+
'minimize' => $options['minimize'] ?? true,
245245
'order_pos' => $options['order_pos'] ?? abs($this->order--),
246246
],
247247
'customtheme_' . (!is_array($options) ? $options : $file)
@@ -292,7 +292,7 @@ private function js() : void
292292
'attributes' => $options['js']['attributes'] ?? [],
293293
'defer' => $options['js']['defer'] ?? false,
294294
'external' => $options['js']['external'] ?? false,
295-
'minimize' => $options['js']['minimize'] ?? false,
295+
'minimize' => $options['js']['minimize'] ?? true,
296296
],
297297
'customtheme_' . $file
298298
);

0 commit comments

Comments
 (0)