1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

add back proper isDev check

This commit is contained in:
Kyle Spearrin
2018-10-08 14:26:10 -04:00
parent 4aa75e9376
commit 8d98e9e6f9

View File

@@ -127,7 +127,7 @@ containerService.attachToWindow(window);
export function initFactory(): Function {
return async () => {
await (storageService as HtmlStorageService).init();
const isDev = true;
const isDev = platformUtilsService.isDev();
if (!isDev && platformUtilsService.isSelfHost()) {
environmentService.baseUrl = window.location.origin;
} else {