Merge branch 'timo'

This commit is contained in:
2026-02-02 09:31:36 -06:00
142 changed files with 10978 additions and 2657 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

@@ -2,4 +2,6 @@ import { environment_base } from './environment.base';
export const environment = environment_base;
//environment.apiBaseUrl = 'https://api-dev.bizmatch.net';
environment.apiBaseUrl = 'http://bizsearch.at-powan.ts.net:3001';
environment.mailinfoUrl = 'http://bizsearch.at-powan.ts.net';
environment.imageBaseUrl = 'http://bizsearch.at-powan.ts.net';

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';