feat(environment): add homo environment configuration for homologation
This commit is contained in:
11
angular.json
11
angular.json
@@ -65,6 +65,14 @@
|
|||||||
"optimization": false,
|
"optimization": false,
|
||||||
"extractLicenses": false,
|
"extractLicenses": false,
|
||||||
"sourceMap": true
|
"sourceMap": true
|
||||||
|
},
|
||||||
|
"homo": {
|
||||||
|
"fileReplacements": [
|
||||||
|
{
|
||||||
|
"replace": "src/environments/environment.ts",
|
||||||
|
"with": "src/environments/environment.homo.ts"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "production"
|
"defaultConfiguration": "production"
|
||||||
@@ -80,6 +88,9 @@
|
|||||||
},
|
},
|
||||||
"local": {
|
"local": {
|
||||||
"buildTarget": "shopit-front:build:local"
|
"buildTarget": "shopit-front:build:local"
|
||||||
|
},
|
||||||
|
"homo": {
|
||||||
|
"buildTarget": "shopit-front:build:homo"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "development"
|
"defaultConfiguration": "development"
|
||||||
|
|||||||
6
src/environments/environment.homo.ts
Normal file
6
src/environments/environment.homo.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export const environment = {
|
||||||
|
production: false,
|
||||||
|
nombre:"Homologación - activo",
|
||||||
|
url:"https://backend.shopit.com.ar/api/",
|
||||||
|
urlDescarga:"url/"
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user