Merge pull request #301 from bknd-io/fix/cli-run-open

fix cli url opener and add minimal debug docker config
This commit is contained in:
dswbx
2025-11-21 19:40:54 +01:00
committed by GitHub
4 changed files with 31 additions and 8 deletions

View File

@@ -67,7 +67,10 @@ export async function startServer(
$console.info("Server listening on", url);
if (options.open) {
await open(url);
const p = await open(url, { wait: false });
p.on("error", () => {
$console.warn("Couldn't open url in browser");
});
}
}