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

Commit 643bc68

Browse files
author
sw-yx
committed
use 8888 default port as suggested in #173
1 parent 42dada8 commit 643bc68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/dev/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ async function startProxy(settings, addonUrls) {
9797
if (settings.functionsPort) {
9898
await waitPort({ port: settings.functionsPort });
9999
}
100-
const port = await getPort({ port: settings.port });
100+
const port = await getPort({ port: settings.port || 8888 });
101101
const functionsServer = settings.functionsPort
102102
? `http://localhost:${settings.functionsPort}`
103103
: null;

0 commit comments

Comments
 (0)