Is it possible to disable 'minify-cation' with Minify?
Within a ZF project I'm using Minify lib to merge and minify my js, since it's an old project, I didn't wrote a view helper to handle minify and there were no way to manage this with ZF.
But well it's difficult to debug online because of the obfuscation.
i'd like to know if it's possible to disable compression, obfuscation开发者_运维技巧 or whatever, and just use minify to merge scripts into a single file.
Any ideas ?
Look into debug mode. If you can't add &debug
to the URLs directly, you could temporarily add $_GET['debug'] = '1';
to your /min/config.php file in your development environment.
精彩评论