fix(terminal): change --port=9997 to --port 9997 and remove --headless

This commit is contained in:
2026-03-22 00:30:54 +08:00
parent 19e7a51b61
commit dff4674c54

View File

@@ -44,7 +44,7 @@ class TerminalService {
} }
private getExeArgs(): string[] { private getExeArgs(): string[] {
return [`--port=${this.port.toString()}`, '--headless']; return ['--port', this.port.toString()];
} }
private async checkHealth(): Promise<boolean> { private async checkHealth(): Promise<boolean> {