mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-02-20 10:49:24 +00:00
http://getsparks.org/packages/assets/versions/HEAD/show Creates our minified and combined .js and .css files
32 lines
1021 B
PHP
32 lines
1021 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| CssMin configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| No need to change this if the defaults are ok for you
|
|
|
|
|
*/
|
|
|
|
$config['assets_cssmin_filters'] = array(
|
|
"ImportImports" => false,
|
|
"RemoveComments" => true,
|
|
"RemoveEmptyRulesets" => true,
|
|
"RemoveEmptyAtBlocks" => true,
|
|
"ConvertLevel3AtKeyframes" => false,
|
|
"ConvertLevel3Properties" => false,
|
|
"Variables" => true,
|
|
"RemoveLastDelarationSemiColon" => true,
|
|
);
|
|
|
|
$config['assets_cssmin_plugins'] = array(
|
|
"Variables" => true,
|
|
"ConvertFontWeight" => false,
|
|
"ConvertHslColors" => false,
|
|
"ConvertRgbColors" => false,
|
|
"ConvertNamedColors" => false,
|
|
"CompressColorValues" => false,
|
|
"CompressUnitValues" => false,
|
|
"CompressExpressionValues" => false
|
|
); |