Update frontend/src/store/DevelopmentStore.ts

This commit is contained in:
Max W. 2024-02-15 19:59:05 +00:00
parent 9f830c4e48
commit dbc72a3dc4

View File

@ -23,7 +23,7 @@ export class DevelopmentStore {
if (this.isDevelopment) {
return 'http://localhost:80/';
} else {
return window.location.origin;
return window.location.origin + "/";
}
}
}