Skip to content

Instantly share code, notes, and snippets.

@tejpratap46
Created December 26, 2016 07:16
Show Gist options
  • Save tejpratap46/8f3ed592fe6ba02c7d9ebaf39d42b779 to your computer and use it in GitHub Desktop.
Save tejpratap46/8f3ed592fe6ba02c7d9ebaf39d42b779 to your computer and use it in GitHub Desktop.
Disable angularjs debug mode.
module.config(["$httpProvider", "$compileProvider", (
$httpProvider:IHttpProvider,
$compileProvider:ICompileProvider
) => {
$httpProvider.useApplyAsync(true);
$compileProvider.debugInfoEnabled(false);
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment