This commit is contained in:
2026-02-06 12:11:38 -06:00
parent 36ef7eb4bf
commit 91bcf3c2ed
2 changed files with 30 additions and 7 deletions

View File

@@ -1,10 +1,15 @@
import { environment_base } from './environment.base';
export const environment = environment_base;
export const environment = { ...environment_base }; // Kopie erstellen
environment.production = true;
environment.apiBaseUrl = 'https://api.bizmatch.net';
// WICHTIG: Diese Zeile auskommentieren, solange du lokal testest!
// Sonst greift er immer aufs Internet zu, statt auf deinen lokalen Docker-Container.
environment.apiBaseUrl = 'https://api.bizmatch.net';
environment.mailinfoUrl = 'https://www.bizmatch.net';
environment.imageBaseUrl = 'https://api.bizmatch.net';
environment.imageBaseUrl = 'https://api.bizmatch.net'; // Ggf. auch auskommentieren, wenn Bilder lokal liegen
environment.POSTHOG_KEY = 'phc_eUIcIq0UPVzEDtZLy78klKhGudyagBz3goDlKx8SQFe';
environment.POSTHOG_HOST = 'https://eu.i.posthog.com';
environment.POSTHOG_HOST = 'https://eu.i.posthog.com';