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"