Skip to content

Commit

Permalink
fixes #1584 PORT env variable not always an integer (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
matoilic authored and gaearon committed Feb 18, 2017
1 parent bee4ece commit dd9ec7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
}

// Tools like Cloud9 rely on this.
var DEFAULT_PORT = process.env.PORT || 3000;
var DEFAULT_PORT = parseInt(process.env.PORT, 10) || 3000;
var compiler;
var handleCompile;

Expand Down

0 comments on commit dd9ec7b

Please sign in to comment.