Lovelace cleanups (#3427)

* Improvements

* Add types CAF

* Fix demo switching

* Do not set background color in hui-view
This commit is contained in:
Paulus Schoutsen
2019-07-26 11:06:16 -07:00
committed by GitHub
parent dae0ecce6a
commit 6abbe72e4d
30 changed files with 233 additions and 107 deletions

View File

@@ -84,12 +84,12 @@ gulp.task("webpack-dev-server-demo", () => {
open: true,
watchContentBase: true,
contentBase: path.resolve(paths.demo_dir, "dist"),
}).listen(8080, "localhost", function(err) {
}).listen(8090, "localhost", function(err) {
if (err) {
throw err;
}
// Server listening
log("[webpack-dev-server]", "http://localhost:8080");
log("[webpack-dev-server]", "http://localhost:8090");
});
});