Added slices

Change-Id: I9dfaa9348fa82da844a04c0c2a58ce07e9fa3a28
diff --git a/conf/app/app.config.dev.ts b/conf/app/app.config.dev.ts
index 749ccc5..7b6fa12 100644
--- a/conf/app/app.config.dev.ts
+++ b/conf/app/app.config.dev.ts
@@ -7,5 +7,5 @@
 
 export const AppConfig: IAppConfig = {
     apiEndpoint: 'http://xos.dev:3000/api',
-    websocketClient: 'http://xos.dev:3000/socket.io/socket.io.js'
+    websocketClient: 'http://xos.dev:3000'
 };
diff --git a/conf/app/app.config.production.ts b/conf/app/app.config.production.ts
index 6ae83a4..2357f77 100644
--- a/conf/app/app.config.production.ts
+++ b/conf/app/app.config.production.ts
@@ -7,5 +7,5 @@
 
 export const AppConfig: IAppConfig = {
     apiEndpoint: 'http://xos-rest-gw:3000/api',
-    websocketClient: 'http://xos-rest-gw:3000/socket.io/socket.io.js'
+    websocketClient: 'http://xos-rest-gw:3000'
 };
diff --git a/conf/app/app.config.test.ts b/conf/app/app.config.test.ts
index 0b10e64..7d215af 100644
--- a/conf/app/app.config.test.ts
+++ b/conf/app/app.config.test.ts
@@ -7,5 +7,5 @@
 
 export const AppConfig: IAppConfig = {
     apiEndpoint: 'http://xos-test:3000/api',
-    websocketClient: 'http://xos-test:3000/socket.io/socket.io.js'
+    websocketClient: 'http://xos-test:3000'
 };