set environmentService baseUrl on self host
This commit is contained in:
parent
59f5304d87
commit
65860b166f
|
@ -115,6 +115,9 @@ containerService.attachToWindow(window);
|
|||
export function initFactory(): Function {
|
||||
return async () => {
|
||||
const isDev = platformUtilsService.isDev();
|
||||
if (!isDev && platformUtilsService.isSelfHost()) {
|
||||
environmentService.baseUrl = window.location.origin;
|
||||
}
|
||||
await apiService.setUrls({
|
||||
base: isDev ? null : window.location.origin,
|
||||
api: isDev ? 'http://localhost:4000' : null,
|
||||
|
|
Loading…
Reference in New Issue