Updated dependencies and Docker image to new web-vault

This commit is contained in:
Daniel García
2018-07-21 17:27:00 +02:00
parent 48e69cebab
commit a291dea16f
8 changed files with 155 additions and 183 deletions

View File

@ -0,0 +1,16 @@
--- a/src/app/services/services.module.ts
+++ b/src/app/services/services.module.ts
@@ -114,10 +114,9 @@ containerService.attachToWindow(window);
export function initFactory(): Function {
return async () => {
- const isDev = platformUtilsService.isDev();
- if (!isDev && platformUtilsService.isSelfHost()) {
- environmentService.baseUrl = window.location.origin;
- }
+ const isDev = false;
+ environmentService.baseUrl = window.location.origin;
+
await apiService.setUrls({
base: isDev ? null : window.location.origin,
api: isDev ? 'http://localhost:4000' : null,