feat(environment): add production environment configuration and file replacements

This commit is contained in:
2026-08-18 15:09:11 -03:00
parent 9ba2041f7b
commit c486131905
2 changed files with 13 additions and 1 deletions

View File

@@ -59,7 +59,13 @@
"maximumError": "8kB"
}
],
"outputHashing": "all"
"outputHashing": "all",
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.production.ts"
}
]
},
"development": {
"optimization": true,

View File

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