Github user ruffle1986 commented on a diff in the pull request:
https://github.com/apache/metron/pull/1226#discussion_r225168900
--- Diff: metron-interface/metron-alerts/package.json ---
@@ -5,12 +5,14 @@
"angular-cli": {},
"scripts": {
"build": "./node_modules/@angular/cli/bin/ng build --prod",
- "start": "ng serve",
+ "start": "ng serve --aot",
--- End diff --
why is `--aot` needed? It slows down the compiler in development mode.
I'm assuming you wanted to be consistent with the
[start-dev](https://github.com/apache/metron/blob/master/metron-interface/metron-alerts/scripts/start-dev.sh#L19)
script, right?
---