Skip to content

Commit

Permalink
Switch port to match README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
coryhouse authored Feb 27, 2017
1 parent d74eb16 commit cb32d78
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 cb32d78

Please sign in to comment.