Loading core scripts such as jQuery in Yii 2

后端 未结 2 431
误落风尘
误落风尘 2021-02-09 15:58

I\'ve been having a hard time trying to figure out how to load jQuery or other CORE scripts in Yii 2.

In Yii 1 it seemed this was

2条回答
  •  有刺的猬
    2021-02-09 16:43

    You can remove the core jQuery from loading like so:

    config/web.php

    'assetManager' => [
        'bundles' => [
            // you can override AssetBundle configs here       
             'yii\web\JqueryAsset' => [
                'sourcePath' => null,
                'js' => [] 
            ],        
        ],
    ],
    

提交回复
热议问题