events urls from web project

This commit is contained in:
Kyle Spearrin 2019-06-25 12:19:18 -04:00
parent cca9384cd7
commit cf6ae951d2
1 changed files with 2 additions and 0 deletions

View File

@ -138,6 +138,7 @@ export function initFactory(): Function {
base: isDev ? null : window.location.origin,
api: isDev ? 'http://localhost:4000' : null,
identity: isDev ? 'http://localhost:33656' : null,
events: isDev ? 'http://localhost:46273' : null,
// Uncomment these (and comment out the above) if you want to target production
// servers for local development.
@ -145,6 +146,7 @@ export function initFactory(): Function {
// base: null,
// api: 'https://api.bitwarden.com',
// identity: 'https://identity.bitwarden.com',
// events: 'https://events.bitwarden.com',
});
setTimeout(() => notificationsService.init(environmentService), 3000);