From 0ff9232f3bb1e33265646585c3e71c20c8ac2a56 Mon Sep 17 00:00:00 2001 From: gitadmin Date: Mon, 3 Nov 2025 13:36:26 +0000 Subject: [PATCH] added dev-1 and dev-2 targets to build and serve --- angular.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/angular.json b/angular.json index 02259c4..658d105 100644 --- a/angular.json +++ b/angular.json @@ -69,6 +69,28 @@ "with": "src/environments/environment.development.ts" } ] + }, + "dev-1": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment-dev-1.ts" + } + ] + }, + "dev-2": { + "optimization": false, + "extractLicenses": false, + "sourceMap": true, + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment-dev-2.ts" + } + ] } }, "defaultConfiguration": "production" @@ -90,6 +112,12 @@ "development": { "buildTarget": "client-app:build:development", "port": 5173 + }, + "dev-1": { + "buildTarget": "client-app:build:dev-1" + }, + "dev-2": { + "buildTarget": "client-app:build:dev-2" } }, "defaultConfiguration": "development"