1
0
mirror of https://github.com/bitwarden/web synced 2025-12-15 07:43:16 +00:00

Set baseUrl in QA cloud environment (#994)

* Set baseUrl if not deployed to prod server

* Add env variable TARGET and use to set baseUrl

* remove webPlatformUtilsService.isProdServer

* passing the ENV through to the Angular app

* switching the value of SELF_HOST back to true

* fixing some webpack.config variables

* fixing the selfhost angular process.env

* removing unecessary code

Co-authored-by: Joseph Flinn <joseph.s.flinn@gmail.com>
This commit is contained in:
Thomas Rittson
2021-05-28 02:46:26 +10:00
committed by GitHub
parent 6586af71f8
commit da0df3a73b
3 changed files with 9 additions and 12 deletions

View File

@@ -144,9 +144,8 @@ containerService.attachToWindow(window);
export function initFactory(): Function {
return async () => {
await (storageService as HtmlStorageService).init();
const isDev = platformUtilsService.isDev();
if (isDev || platformUtilsService.isSelfHost()) {
if (process.env.ENV !== 'production') {
environmentService.baseUrl = window.location.origin;
} else {
environmentService.notificationsUrl = 'https://notifications.bitwarden.com';