Tuesday 22 November 2016

Yii2 disable Bootstrap Js, JQuery and CSS yii2 advanced

In frontend/config/main.php file add the following code into components array:
'assetManager' => [
        'bundles' => [
            'yii\bootstrap\BootstrapPluginAsset' => [
                'js'=>[]
            ],
        ],
    ],
To be more comprehensive:
in order to disable Css (bootstrap.css):
'assetManager' => [
    'bundles' => [
        'yii\bootstrap\BootstrapAsset' => [
            'css' => [],
        ],
    ],
],
in order to disable JS (bootstrap.js):
'assetManager' => [
    'bundles' => [
        'yii\bootstrap\BootstrapPluginAsset' => [
            'js'=>[]
        ],
    ],
],
in order to disable JQuery (jquery.js)
'assetManager' => [
    'bundles' => [
        'yii\web\JqueryAsset' => [
            'js'=>[]
        ],
    ],
],
In order to have all of them disabled:
'assetManager' => [
    'bundles' => [
        'yii\web\JqueryAsset' => [
            'js'=>[]
        ],
        'yii\bootstrap\BootstrapPluginAsset' => [
            'js'=>[]
        ],
        'yii\bootstrap\BootstrapAsset' => [
            'css' => [],
        ],

    ],
],

Yii2 disable Bootstrap Js, JQuery and CSS yii2

No comments:

Post a Comment