diff --git a/webapp/src/modules/Utils.ts b/webapp/src/modules/Utils.ts index 9d3b2f4..312a22d 100644 --- a/webapp/src/modules/Utils.ts +++ b/webapp/src/modules/Utils.ts @@ -1,4 +1,4 @@ export function getBaseUrl(): string { - // const { protocol, host } = window.location; - return `http://localhost:9080`; - } \ No newline at end of file + const { protocol, host } = window.location; + return `${protocol}//${host}`; +} \ No newline at end of file