From 035446ecbc4d93efaad318d25f97b5485378e6c8 Mon Sep 17 00:00:00 2001 From: Ben Fortune Date: Sat, 18 Feb 2023 10:00:39 +0000 Subject: [PATCH] fix(build): Explicitly set esbuild serve host/port --- gui/esbuild.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/esbuild.js b/gui/esbuild.js index 26acf873..c2a0aa9a 100644 --- a/gui/esbuild.js +++ b/gui/esbuild.js @@ -65,6 +65,8 @@ if (watch) { await ctx.watch(); const { host, port } = await ctx.serve({ + host: '127.0.0.1', + port: 8000, servedir: 'out/', });