fix(browser): prevent stdio buffer blocking in Docker environments

This commit is contained in:
Stephen Schoettler 2026-02-26 12:16:28 -08:00
parent d21f571e21
commit f1eed3f875

View File

@ -226,7 +226,7 @@ export async function launchOpenClawChrome(
args.push("about:blank");
return spawn(exe.path, args, {
stdio: "pipe",
stdio: ["ignore", "ignore", "ignore"],
env: {
...process.env,
// Reduce accidental sharing with the user's env.