Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 474a033

Browse files
committed
chore(benchmarks): disable debugInfo in largetable benchmark
1 parent 97a1b39 commit 474a033

File tree

1 file changed

+6
-0
lines changed
  • benchmarks/largetable-bp

1 file changed

+6
-0
lines changed

benchmarks/largetable-bp/app.js

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
var app = angular.module('largetableBenchmark', []);
22

3+
app.config(function($compileProvider) {
4+
if ($compileProvider.debugInfoEnabled) {
5+
$compileProvider.debugInfoEnabled(false);
6+
}
7+
});
8+
39
app.filter('noop', function() {
410
return function(input) {
511
return input;

0 commit comments

Comments
 (0)