Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove interactive shell check when opening browser on start
Browser launch can still be suppressed using BROWSER=none
  • Loading branch information
CaryLandholt committed Dec 13, 2016
commit 23eb31a5ec224c1a186aab8ca101db422fa489e4
4 changes: 1 addition & 3 deletions packages/react-scripts/scripts/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,7 @@ function runDevServer(host, port, protocol) {
console.log(chalk.cyan('Starting the development server...'));
console.log();

if (isInteractive) {
openBrowser(protocol + '://' + host + ':' + port + '/');
}
openBrowser(protocol + '://' + host + ':' + port + '/');
});
}

Expand Down