Yii2 disable vendor module asset

I installed the yii2-admin module located at / vendor / mdmsoft / yii 2-admin, but I don't want it to load its own asset bundle. Is there a way to disable this module asset bundle?

+3


source to share


1 answer


Yes it is possible and even mentioned in the official docs here . One way to do this is through the application config:

return [
    // ...
    'components' => [
        'assetManager' => [
            'bundles' => [
                'mdm\admin\AdminAsset' => false,
            ],
        ],
    ],
];

      



Another way is at runtime via a component:

\Yii::$app->assetManager->bundles['mdm\admin\AdminAsset'] = false;

      

+1


source







All Articles