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

Commit

Permalink
use 8888 default port as suggested in #173
Browse files Browse the repository at this point in the history
  • Loading branch information
sw-yx committed Jun 17, 2019
1 parent 42dada8 commit 643bc68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/dev/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function startProxy(settings, addonUrls) {
if (settings.functionsPort) {
await waitPort({ port: settings.functionsPort });
}
const port = await getPort({ port: settings.port });
const port = await getPort({ port: settings.port || 8888 });
const functionsServer = settings.functionsPort
? `http://localhost:${settings.functionsPort}`
: null;
Expand Down

0 comments on commit 643bc68

Please sign in to comment.