Is it possible to disable js loading manually in Yii? I know Yii loads automatically scripts if are required. I want to disable them for debugging. I was looking in the config.main but in vain.
anyone ?
Regards
In your config file main.php in components array:
'clientScript' => array('scriptMap' => array('jquery.js' => false, )),
Exclude scripts which you dont need or load your scripts. Include CSS,javascript file in Yii Framework