Skip to content

Commit

Permalink
Merge pull request #105 from coryhouse/patch-1
Browse files Browse the repository at this point in the history
Switch port to match README.md
  • Loading branch information
ondrejbartas authored Mar 1, 2017
2 parents d74eb16 + cb32d78 commit 4ea11d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions example/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ new WebpackDevServer(webpack(config), {
hot: true,
historyApiFallback: true,
noInfo: true
}).listen(8001, 'localhost', function(err, result) {
}).listen(3000, 'localhost', function(err, result) {
if (err) {
return console.log(err); // eslint-disable-line
}

console.log('Listening at http://localhost:8001/'); // eslint-disable-line
console.log('Listening at http://localhost:3000/'); // eslint-disable-line
});

0 comments on commit 4ea11d2

Please sign in to comment.