Created
December 26, 2016 07:16
-
-
Save tejpratap46/8f3ed592fe6ba02c7d9ebaf39d42b779 to your computer and use it in GitHub Desktop.
Disable angularjs debug mode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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