Merge branch 'timo' of git.bizmatch.net:aknuth/bizmatch-project into timo

This commit is contained in:
2026-01-06 17:18:05 -06:00
76 changed files with 4180 additions and 2225 deletions

View File

@@ -1,4 +1,5 @@
export const hostname = window.location.hostname;
// SSR-safe: check if window exists (it doesn't on server-side)
const hostname = typeof window !== 'undefined' ? window.location.hostname : 'localhost';
export const environment_base = {
// apiBaseUrl: 'http://localhost:3000',
apiBaseUrl: `http://${hostname}:4200`,

View File

@@ -4,7 +4,7 @@ export const environment = environment_base;
environment.production = true;
environment.apiBaseUrl = 'https://api.bizmatch.net';
environment.mailinfoUrl = 'https://www.bizmatch.net';
environment.imageBaseUrl = 'https://www.bizmatch.net';
environment.imageBaseUrl = 'https://api.bizmatch.net';
environment.POSTHOG_KEY = 'phc_eUIcIq0UPVzEDtZLy78klKhGudyagBz3goDlKx8SQFe';
environment.POSTHOG_HOST = 'https://eu.i.posthog.com';

View File

@@ -2,4 +2,4 @@ import { environment_base } from './environment.base';
export const environment = environment_base;
environment.mailinfoUrl = 'http://localhost:4200';
environment.imageBaseUrl = 'http://localhost:4200';
environment.imageBaseUrl = 'http://localhost:3001';