From 1cf72f9f4bb4319fd47847842c925802f41f9b40 Mon Sep 17 00:00:00 2001 From: BoykoAlex Date: Tue, 31 Aug 2021 16:58:12 -0400 Subject: [PATCH] Flo demo app launch in dev mode --- angular.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/angular.json b/angular.json index 113f495..738b181 100644 --- a/angular.json +++ b/angular.json @@ -43,6 +43,14 @@ "extractLicenses": true, "vendorChunk": false, "buildOptimizer": true, + }, + "development": { + "buildOptimizer": false, + "optimization": false, + "vendorChunk": true, + "extractLicenses": false, + "sourceMap": true, + "namedChunks": true } } }, @@ -54,8 +62,12 @@ "configurations": { "production": { "browserTarget": "dev:build:production" + }, + "development": { + "browserTarget": "dev:build:development" } - } + }, + "defaultConfiguration": "development" }, "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n",