Adds devserver support

* Adds support for webpack devserver
* Enable istanbul on network UI
* Enable capture and replay tests on the network ui
* Normalize mouse wheel events
* Fix missing trailing slash on hosts API
* Add Export YAML button
This commit is contained in:
Ben Thomasson
2017-11-14 13:44:47 -05:00
parent 2713ec2dd5
commit 809eafe9a9
9 changed files with 130 additions and 108 deletions

View File

@@ -51,6 +51,7 @@ const watch = {
stats: 'minimal',
publicPath: '/static/',
host: '127.0.0.1',
https: true,
port: 3000,
https: true,
proxy: {
@@ -64,6 +65,11 @@ const watch = {
target: TARGET,
secure: false,
ws: true
},
'/network_ui': {
target: TARGET,
secure: false,
ws: true
}
}
}