1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-01 00:10:39 +02:00

prod endpoints commented in

This commit is contained in:
Kyle Spearrin 2018-07-25 21:41:55 -04:00
parent f576bbd3e1
commit f9e756402f

View File

@ -123,6 +123,13 @@ export function initFactory(): Function {
base: isDev ? null : window.location.origin, base: isDev ? null : window.location.origin,
api: isDev ? 'http://localhost:4000' : null, api: isDev ? 'http://localhost:4000' : null,
identity: isDev ? 'http://localhost:33656' : null, identity: isDev ? 'http://localhost:33656' : null,
// Uncomment these (and comment out the above) if you want to target production
// servers for local development.
// base: null,
// api: 'https://api.bitwarden.com',
// identity: 'https://identity.bitwarden.com',
}); });
lockService.init(true); lockService.init(true);