We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We must pay attentions to details.
An example: https://medium.com/swlh/improving-angular-performance-with-1-line-of-code-a1fb814a6476#.60xbcmm2y (better explained here)
The text was updated successfully, but these errors were encountered:
Official docs say: https://docs.angularjs.org/guide/production
Sorry, something went wrong.
Also more tips here: http://www.gros-engineering.com/angularjs-performance-tweaks
@mdantonio we may already convert to the first post in "Disabling Debug Data". That is used from tests and the chrome batarang which we do not use...
We just need:
angular.module('web') .config(['$compileProvider', function ($compileProvider) { $compileProvider.debugInfoEnabled(false); }]);
in common.run.js?
common.run.js
No branches or pull requests
We must pay attentions to details.
An example:
https://medium.com/swlh/improving-angular-performance-with-1-line-of-code-a1fb814a6476#.60xbcmm2y (better explained here)
The text was updated successfully, but these errors were encountered: