ict.ken.be

 

Disable Angular Debugging

Related Posts

Categories: Angularjs
myApp.config(['$compileProvider', function ($compileProvider) {
            $compileProvider.debugInfoEnabled(false);
}]);

It keeps amazing me why people do not disable debugging when deploying to production.