mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
Only include SVG images smaller than 5KB in minified CSS
This commit is contained in:
parent
02b2d54275
commit
181ddf2ffe
1 changed files with 2 additions and 0 deletions
|
|
@ -256,6 +256,8 @@ class Formatter
|
||||||
public static function minifyCSS($source_filename, $target_filename)
|
public static function minifyCSS($source_filename, $target_filename)
|
||||||
{
|
{
|
||||||
$minifier = new \MatthiasMullie\Minify\CSS();
|
$minifier = new \MatthiasMullie\Minify\CSS();
|
||||||
|
$minifier->setMaxImportSize(5);
|
||||||
|
$minifier->setImportExtensions(['svg' => 'data:image/svg+xml']);
|
||||||
if (is_array($source_filename))
|
if (is_array($source_filename))
|
||||||
{
|
{
|
||||||
foreach ($source_filename as $filename)
|
foreach ($source_filename as $filename)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue