feat(environment): add production environment configuration and file replacements
This commit is contained in:
@@ -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,
|
||||
|
||||
6
src/environments/environment.production.ts
Normal file
6
src/environments/environment.production.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export const environment = {
|
||||
production: true,
|
||||
nombre: "Producción - activo",
|
||||
url: "https://backend.shopit.com.ar/api/",
|
||||
urlDescarga: "url/"
|
||||
};
|
||||
Reference in New Issue
Block a user