From a8ae878cd247c768e5c6c0f5508112ae65c3e0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Mon, 8 Jul 2019 14:09:53 +0200 Subject: [PATCH] Run production build (ng build --prod) without --aot aot is already set in angular.json. --- client/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/package.json b/client/package.json index 1a8f5e7ff..2c7baaff9 100644 --- a/client/package.json +++ b/client/package.json @@ -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",