Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created December 31, 2014 13:47
Show Gist options
  • Save snowman-repos/c14ba9db75ac87911a1a to your computer and use it in GitHub Desktop.
Save snowman-repos/c14ba9db75ac87911a1a to your computer and use it in GitHub Desktop.
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