From 9552ce4997514b5e3b06d35d39d430bc33075e7c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 30 Jul 2018 12:01:24 -0400 Subject: [PATCH] dev server urls --- src/bw.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/bw.ts b/src/bw.ts index 129fc728b8..c14b5bc52d 100644 --- a/src/bw.ts +++ b/src/bw.ts @@ -131,6 +131,12 @@ export class Main { this.storageService.init(); this.containerService.attachToWindow(global); await this.environmentService.setUrlsFromStorage(); + // Dev Server URLs. Comment out the line above. + // this.apiService.setUrls({ + // base: null, + // api: 'http://localhost:4000', + // identity: 'http://localhost:33656', + // }); const locale = await this.storageService.get(ConstantsService.localeKey); await this.i18nService.init(locale); await this.authService.init();