diff --git a/bizmatch/angular.json b/bizmatch/angular.json index 7af7cd4..b1f887f 100644 --- a/bizmatch/angular.json +++ b/bizmatch/angular.json @@ -71,6 +71,17 @@ "optimization": false, "extractLicenses": false, "sourceMap": true + }, + "prod": { + "fileReplacements": [ + { + "replace": "src/environments/environment.ts", + "with": "src/environments/environment.prod.ts" + } + ], + "optimization": true, + "extractLicenses": false, + "sourceMap": true } }, "defaultConfiguration": "production" diff --git a/bizmatch/src/environments/environment.prod.ts b/bizmatch/src/environments/environment.prod.ts new file mode 100644 index 0000000..60aae84 --- /dev/null +++ b/bizmatch/src/environments/environment.prod.ts @@ -0,0 +1,7 @@ +import { environment_base } from './environment.base'; + +export const environment = environment_base; + +environment.apiBaseUrl = 'https://api.bizmatch.net'; +environment.mailinfoUrl = 'https://www.bizmatch.net'; +environment.imageBaseUrl = 'https://www.bizmatch.net';