mirror of
https://github.com/bitwarden/browser.git
synced 2025-03-09 12:59:20 +01:00
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 {
|
export function initFactory(): Function {
|
||||||
return async () => {
|
return async () => {
|
||||||
const isDev = platformUtilsService.isDev();
|
const isDev = platformUtilsService.isDev();
|
||||||
|
if (!isDev && platformUtilsService.isSelfHost()) {
|
||||||
|
environmentService.baseUrl = window.location.origin;
|
||||||
|
}
|
||||||
await apiService.setUrls({
|
await apiService.setUrls({
|
||||||
base: isDev ? null : window.location.origin,
|
base: isDev ? null : window.location.origin,
|
||||||
api: isDev ? 'http://localhost:4000' : null,
|
api: isDev ? 'http://localhost:4000' : null,
|
||||||
|
Loading…
Reference in New Issue
Block a user