Переглянути джерело

Disable Angular debugging, should improve perfs

Gaël Métais 9 роки тому
батько
коміт
a9adb3bb06
1 змінених файлів з 4 додано та 0 видалено
  1. 4 0
      front/src/js/app.js

+ 4 - 0
front/src/js/app.js

@@ -82,3 +82,7 @@ yltApp.config(['$routeProvider', '$locationProvider',
     }
 ]);
 
+// Disable debugging https://docs.angularjs.org/guide/production
+yltApp.config(['$compileProvider', function ($compileProvider) {
+    $compileProvider.debugInfoEnabled(false);
+}]);