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

Commit 7dc08c4

Browse files
authored
Merge pull request #41 from netlify/fix_gatsby_command
Fix Gatsby's dev command.
2 parents 8f2eb9f + addc1b5 commit 7dc08c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/detectors/gatsby.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function() {
1111
port: 8888,
1212
proxyPort: 8000,
1313
env: { ...process.env },
14-
args: yarnExists ? ['run', 'dev'] : ['dev'],
14+
args: yarnExists ? ['run', 'develop'] : ['develop'],
1515
urlRegexp: new RegExp(`(http://)([^:]+:)${8000}(/)?`, 'g'),
1616
dist: 'public'
1717
}

0 commit comments

Comments
 (0)