15 lines
663 B
TypeScript
15 lines
663 B
TypeScript
import { environment_base } from './environment.base';
|
|
|
|
export const environment = { ...environment_base }; // Kopie erstellen
|
|
|
|
environment.production = true;
|
|
|
|
// 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://www.bizmatch.net';// Ggf. auch auskommentieren, wenn Bilder lokal liegen
|
|
|
|
environment.POSTHOG_KEY = 'phc_eUIcIq0UPVzEDtZLy78klKhGudyagBz3goDlKx8SQFe';
|
|
environment.POSTHOG_HOST = 'https://eu.i.posthog.com'; |