How can I stop Yii2 from loading the pjax asset file automatically when I use the Pjax widget? I want to load it myself from a CDN. I've tried this:
'assetManager' => [
'bundles' => [
'yii\web\PjaxAsset' => [
'js'=>[]
],
],
],
But that doesn't do anything. Any suggestions?