Moved bs config to js file
diff --git a/views/style/bs-config.js b/views/style/bs-config.js
new file mode 100644
index 0000000..2bc1416
--- /dev/null
+++ b/views/style/bs-config.js
@@ -0,0 +1,13 @@
+module.exports = {
+ "files": [
+ '../../xos/core/dashboard/*.html',
+ '../../xos/core/xoslib/**/*.html',
+ '../../xos/core/xoslib/static/**/*.js',
+ '../../xos/core/xoslib/static/**/*.css',
+ '../../xos/core/dashboard/views/*.py',
+ '../../xos/templates/**/*.html',
+ '../../xos/core/static/xos.css'
+ ],
+ proxy: "xos.dev:9999",
+ open: true
+};
diff --git a/views/style/package.json b/views/style/package.json
index 6f1a8e6..4da2c4d 100644
--- a/views/style/package.json
+++ b/views/style/package.json
@@ -2,7 +2,7 @@
"name": "xos-styling",
"version": "0.0.1",
"scripts": {
- "server": "browser-sync start --proxy xos.dev:9999 --files \"../../xos/core/dashboard/views/*.py, ../../xos/templates/**/*.html, ../../xos/core/static/xos.css\"",
+ "server": "browser-sync start --config bs-config.js",
"styles": "node-sass -w -r --include-path --source-map-embed -o ../../xos/core/static/ ./sass/xos.scss",
"start": "concurrently \"npm run styles\" \"npm run server\""
},