分享个插件:自动压缩网页CSS、JS代码,以及分别将多个CSS,JS文件合并为一个文件 [ 2.0 版本 ]
通过合并CSS,JS文件,以减少请求,提高加载速度。这个插件可以通过 AssetBundle 来自动压缩页面出现的CSS,JS文件,比官方手册介绍合并方法省事多了。
安装:
composer require "rmrevin/yii2-minify-view"
配置:
<?php
return [
// ...
'components' => [
// ...
'view' => [
'class' => '\rmrevin\yii\minify\View',
'enableMinify' => !YII_DEBUG,
'concatCss' => true, // concatenate css
'minifyCss' => true, // minificate css
'concatJs' => true, // concatenate js
'minifyJs' => true, // minificate js
'minifyOutput' => true, // minificate result html page
'web_path' => '@web', // path alias to web base
'base_path' => '@webroot', // path alias to web base
'minify_path' => '@webroot/minify', // path alias to save minify result
'js_position' => [ \yii\web\View::POS_END ], // positions of js files to be minified
'force_charset' => 'UTF-8', // charset forcibly assign, otherwise will use all of the files found charset
'expand_imports' => true, // whether to change @import on content
'compress_options' => ['extra' => true], // options for compress
'excludeBundles' => [
\dev\hellowrld\AssetBundle::class, // exclude this bundle from minification
],
]
]
];
原链接:https://github.com/rmrevin/yii2-minify-view
转载署名本文作者且注明文章出处^_^
师阳 无锡
注册时间:2013-06-10
最后登录:2022-12-09
在线时长:62小时57分
最后登录:2022-12-09
在线时长:62小时57分
- 粉丝52
- 金钱4731
- 威望220
- 积分7551
热门源码
- 基于 Yii 2 + Bootstrap 3 搭建一套后台管理系统 CMF
- 整合完 yii2-rbac+yii2-admin+adminlte 等库的基础开发后台源码
- 适合初学者学习的一款通用的管理后台
- yii-goaop - 将 goaop 集成到 Yii,在 Yii 中优雅的面向切面编程
- yii-log-target - 监控系统异常且多渠道发送异常信息通知
- 店滴云1.3.0
- 面向对象的一小步:添加 ActiveRecord 的 Scope 功能
- Yii2 开源商城 FecShop
- 基于 Yii2 开发的多店铺商城系统,免费开源 + 适合二开
- leadshop - 基于 Yii2 开发的一款免费开源且支持商业使用的商城管理系统
共 2 条评论
发错地方了,╮(╯▽╰)╭,应该发到扩展那个页面
怎么没有办法收藏~。。。。