yii2-assets-auto-compress
yii2-assets-auto-compress copied to clipboard
Automatic compilation of js + css + html
Hi: Weird behaviour. I have this config: ``` 'class' => '\skeeks\yii2\assetsAuto\AssetsAutoCompressComponent', 'enabled' => true, 'readFileTimeout' => 3000, //Time in seconds for reading each asset file 'cssCompress' => true, //Enable minification...
When I activate your autocompress then my fileupload is no longer working. EVEN when I set all the settings to FALSE.. I still get the following error Any suggestions ```...
'condition' => 'lte IE 8',
Having Gzip compression for JS files saves a lot of bandwidth for clients and improves page speed for webmasters
my configuration is as follow: 'bootstrap'=>['assetsAutoCompress'], 'components' => [ 'assetsAutoCompress' => [ 'class'=>'skeeks\yii2\assetsAuto\AssetsAutoCompressComponent', 'enabled'=> true, 'jsCompress'=> true, 'cssFileCompile' => true, 'jsFileCompile' => true, ],] I can see it is compiling...
Added support for the ability to skip specific files and have them render normally regardless of the assets compression. Example: ``` 'assetsAutoCompress' => [ 'class' => '\skeeks\yii2\assetsAuto\AssetsAutoCompressComponent', 'enabled' => TRUE,...
It is possible to leave the CSS in the tag ``, instead of the file? **Error PageSpeed Insights** None of the above-the-fold content on your page could be rendered without...
I found that because the compressed resources are suffixed by a '?v=' parameter that has the file creation time, effectively resource caching is defeated. Why is this? The name of...
Очень частая ситуация... система зависимостей загрузки бандлов в Yii, в зависимости от ситуации может менять очередность загрузки, из-за этого создаются новые дубликаты файлов... в реалности стоит добавить сортировку перед генерацией...
У меня есть некий универсальный ассет на все фронтенд страницы... Допустим так ```php app\assets\FrontendAsset::register($this); ``` Но на одной из страниц я хочу добавить еще один внешний ассет гуглокарт... (сделал без...