Rumah > Artikel > rangka kerja php > yii2禁用bootstrap库
1、编辑 frontend\asset\AppAsset.php 文件,注释掉变量 $depends 里的 'yii\bootstrap\BootstrapAsset' 值。
2、编辑 frontend\config\main.php 文件,在字段 'components' 下面添加配置:
(相关教程推荐:yii框架)
'assetManager' => [ 'bundles' => [ 'yii\bootstrap\BootstrapAsset' => [ 'css' => [], // 去除 bootstrap.css 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], 'yii\bootstrap\BootstrapPluginAsset' => [ 'js' => [], // 去除 bootstrap.js 'sourcePath' => null, // 防止在 frontend/web/asset 下生产文件 ], ], ],
更多编程相关内容,请关注php中文网编程入门栏目!
Atas ialah kandungan terperinci yii2禁用bootstrap库. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!