diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index 9c152ae17a..33c7540cee 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -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);