From 565bc769ed29f861628e1bcacbf91304b5514a9c Mon Sep 17 00:00:00 2001 From: ncoronel Date: Fri, 24 Jul 2026 16:59:15 -0300 Subject: [PATCH] feat(environment): add homo environment configuration for homologation --- angular.json | 11 +++++++++++ src/environments/environment.homo.ts | 6 ++++++ 2 files changed, 17 insertions(+) create mode 100644 src/environments/environment.homo.ts diff --git a/angular.json b/angular.json index f3f2ebc..784c6ea 100644 --- a/angular.json +++ b/angular.json @@ -65,6 +65,14 @@ "optimization": false, "extractLicenses": false, "sourceMap": true + }, + "homo": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.homo.ts" + } + ] } }, "defaultConfiguration": "production" @@ -80,6 +88,9 @@ }, "local": { "buildTarget": "shopit-front:build:local" + }, + "homo": { + "buildTarget": "shopit-front:build:homo" } }, "defaultConfiguration": "development" diff --git a/src/environments/environment.homo.ts b/src/environments/environment.homo.ts new file mode 100644 index 0000000..abab87d --- /dev/null +++ b/src/environments/environment.homo.ts @@ -0,0 +1,6 @@ +export const environment = { + production: false, + nombre:"Homologación - activo", + url:"https://backend.shopit.com.ar/api/", + urlDescarga:"url/" +};