diff --git a/aunarsalud/src/app/config.ts b/aunarsalud/src/app/config.ts deleted file mode 100644 index 5820abc..0000000 --- a/aunarsalud/src/app/config.ts +++ /dev/null @@ -1,13 +0,0 @@ -declare global { - interface Window { - __AUNAR_CONFIG__?: { - apiBaseUrl?: string; - }; - } -} - -const rawBase = - (typeof window !== 'undefined' && window.__AUNAR_CONFIG__?.apiBaseUrl) || - '/api'; - -export const API_BASE_URL = rawBase.replace(/\/+$/, '');