diff --git a/angular.json b/angular.json index f75e020..5e00577 100644 --- a/angular.json +++ b/angular.json @@ -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, diff --git a/src/environments/environment.production.ts b/src/environments/environment.production.ts new file mode 100644 index 0000000..8a97053 --- /dev/null +++ b/src/environments/environment.production.ts @@ -0,0 +1,6 @@ +export const environment = { + production: true, + nombre: "Producción - activo", + url: "https://backend.shopit.com.ar/api/", + urlDescarga: "url/" +};