Skip to content

Commit

Permalink
fix(start): Allow webpack dev server to be accessible via ip (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
dborysiewicz committed Mar 13, 2018
1 parent bcc9d49 commit 40fb0eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const devServer = new WebpackDevServer(compiler, {
allowedHosts: hosts
});

devServer.listen(port, '127.0.0.1', (err, result) => {
devServer.listen(port, '0.0.0.0', (err, result) => {
if (err) {
return console.log(err);
}
Expand Down

0 comments on commit 40fb0eb

Please sign in to comment.