WIP - use traefik to route to application

This commit is contained in:
Francisco Gaona
2026-01-03 23:15:24 +01:00
parent fff1718478
commit 801644f396
3 changed files with 4 additions and 3 deletions

View File

@@ -205,7 +205,7 @@ export function useSoftphone() {
if (typeof window !== 'undefined') {
const currentHost = window.location.hostname;
const protocol = window.location.protocol;
return `${protocol}//${currentHost}:3000`;
return `${protocol}//${currentHost}`;
}
return 'http://localhost:3000';
};