diff --git a/browse/src/bun-polyfill.cjs b/browse/src/bun-polyfill.cjs index e0ada11b3..dd8faf803 100644 --- a/browse/src/bun-polyfill.cjs +++ b/browse/src/bun-polyfill.cjs @@ -75,6 +75,9 @@ globalThis.Bun = { timeout: options.timeout, env: options.env, cwd: options.cwd, + // Suppress the console window Windows allocates per child process; + // without this every spawn flashes a visible conhost window. + windowsHide: true, }); return { @@ -91,6 +94,9 @@ globalThis.Bun = { stdio, env: options.env, cwd: options.cwd, + // Suppress the console window Windows allocates per child process; + // without this every spawn flashes a visible conhost window. + windowsHide: true, }); return {