Fixed xos url
Change-Id: I6254d0a5ca8ca5ef6b588db6e7a8929774b6fe8b
diff --git a/conf/app/app.config.local.ts b/conf/app/app.config.local.ts
new file mode 100644
index 0000000..a00155b
--- /dev/null
+++ b/conf/app/app.config.local.ts
@@ -0,0 +1,5 @@
+import {IAppConfig} from './interfaces';
+export const AppConfig: IAppConfig = {
+ apiEndpoint: 'http://localhost:4000/api',
+ websocketClient: 'http://localhost:4000/'
+};
diff --git a/conf/webpack-dist.conf.js b/conf/webpack-dist.conf.js
index 21f8ce3..8945790 100644
--- a/conf/webpack-dist.conf.js
+++ b/conf/webpack-dist.conf.js
@@ -82,6 +82,7 @@
]
},
entry: {
+ config: `./${conf.path.src('app/config/style.config.ts')}`,
app: `./${conf.path.src('index')}`,
vendor: Object.keys(pkg.dependencies)
},
@@ -92,3 +93,4 @@
configuration: require('../tslint.json')
}
};
+