Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created December 31, 2014 13:47
AngularJS: Disable debug info
app.config(['$compileProvider', function ($compileProvider) {
// disable debug info
$compileProvider.debugInfoEnabled(false);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment