Add fix for assertion error to devserver config

This commit is contained in:
Fred Carlsen
2018-11-27 15:40:37 +01:00
parent 15f05733be
commit ec12e46e3f

View File

@@ -85,6 +85,13 @@ const config = {
],
},
disableHostCheck: true,
// Fixes assertion error
// Source: https://github.com/webpack/webpack-dev-server/issues/1491
https: {
spdy: {
protocols: ['http/1.1']
}
},
},
};