From 643bc6844029703f1912558597e6c8221a38fa45 Mon Sep 17 00:00:00 2001 From: sw-yx Date: Mon, 17 Jun 2019 01:10:05 -0400 Subject: [PATCH] use 8888 default port as suggested in #173 --- src/commands/dev/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/dev/index.js b/src/commands/dev/index.js index d42f255..3ebc80d 100644 --- a/src/commands/dev/index.js +++ b/src/commands/dev/index.js @@ -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;