yii2 禁止 自带的 jquery 和 bootstrap.css 文件

编辑 backend\config\main.php 文件,在 components 下面添加配置

    'components' => [
    
         // ......  省略  ......
         
        'assetManager'=>[
            'bundles'=>[
                'yii\bootstrap\BootstrapAsset' => [
                    'css' => []
                ],
                'yii\web\JqueryAsset' => [
                    'sourcePath' => null,
                    'js' => []
                ],
            ],

        ]
    ],


你可能感兴趣的:(yii2 禁止 自带的 jquery 和 bootstrap.css 文件)