ict.ken.be

Delivering solid user friendly software solutions since the dawn of time.

Disable Angular Debugging

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

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