feat(environment): add homo environment configuration for homologation

This commit is contained in:
2026-07-24 16:59:15 -03:00
parent 4e06145f44
commit 565bc769ed
2 changed files with 17 additions and 0 deletions

View File

@@ -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"

View File

@@ -0,0 +1,6 @@
export const environment = {
production: false,
nombre:"Homologación - activo",
url:"https://backend.shopit.com.ar/api/",
urlDescarga:"url/"
};