Skip to content
This repository has been archived by the owner on Jun 3, 2019. It is now read-only.

Commit

Permalink
Merge pull request #433 from kdavh/public-dev-server-fix
Browse files Browse the repository at this point in the history
dev server host always 0.0.0.0, not host config
  • Loading branch information
birkir authored May 3, 2017
2 parents 550e809 + c991cad commit dbb0d3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/development/hotClientServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class HotClientServer {
app.use(this.webpackDevMiddleware);
app.use(createWebpackHotMiddleware(compiler));

const listener = app.listen(port, host);
const listener = app.listen(port);

this.listenerManager = new ListenerManager(listener, 'client');

Expand Down

0 comments on commit dbb0d3a

Please sign in to comment.