| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2017-03-15 21:16
- */
- namespace backend\assets;
- /**
- * 重要提示:启用配置后,修改此处的js/css将不会生效
- * 需要在backend/config/main.php中assetManager.bundles处修改配置
- * 主要用于测试环境走本地文件,正式环境配置成cdn
- * Class UeditorAsset
- * @package backend\assets
- */
- class UeditorAsset extends \yii\web\AssetBundle
- {
- public $basePath = "@web";
- public $sourcePath = '@backend/web/static/js/plugins/ueditor/';
- public $js = [
- 'ueditor.all.min.js',
- ];
- public $publishOptions = [
- 'except' => [
- 'php/',
- 'index.html',
- '.gitignore'
- ]
- ];
- }
|