From 388aac5a76dbb2896f069ed8535726e41dc29d60 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Wed, 30 Jul 2025 17:29:58 -0500 Subject: [PATCH] preparation for prod --- bizmatch/angular.json | 11 +++++++++++ bizmatch/src/environments/environment.prod.ts | 7 +++++++ 2 files changed, 18 insertions(+) create mode 100644 bizmatch/src/environments/environment.prod.ts 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';