Github user tiborm commented on a diff in the pull request:
https://github.com/apache/metron/pull/1226#discussion_r225446653
--- 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 --
Thanks @ruffle1986 for checking this! We've got the ahead of time
compilation turned on in our start scripts too. It's needed because of the lazy
loading of the PCAP UI.
---