Run production build (ng build --prod) without --aot

aot is already set in angular.json.
This commit is contained in:
Emanuel Schütze 2019-07-08 14:09:53 +02:00
parent 2f2e415b78
commit a8ae878cd2
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
"ng": "ng",
"ng-high-memory": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng",
"start": "ng serve --proxy-config proxy.conf.json --host=0.0.0.0",
"build": "ng build --prod --aot",
"build": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",