Skip to content
This repository has been archived by the owner on Sep 12, 2019. It is now read-only.

Commit

Permalink
Merge pull request #41 from netlify/fix_gatsby_command
Browse files Browse the repository at this point in the history
Fix Gatsby's dev command.
  • Loading branch information
calavera authored Mar 25, 2019
2 parents 8f2eb9f + addc1b5 commit 7dc08c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detectors/gatsby.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = function() {
port: 8888,
proxyPort: 8000,
env: { ...process.env },
args: yarnExists ? ['run', 'dev'] : ['dev'],
args: yarnExists ? ['run', 'develop'] : ['develop'],
urlRegexp: new RegExp(`(http://)([^:]+:)${8000}(/)?`, 'g'),
dist: 'public'
}
Expand Down

0 comments on commit 7dc08c4

Please sign in to comment.