Skip to content

Commit b37d68a

Browse files
committed
fix: Update command line arguments in main.rs
- Removed `--remote-debugging-port=9222` argument - Added `--disable-software-rasterizer` argument - Added `--no-zygote` argument - Added `--single-process` argument
1 parent 45333f8 commit b37d68a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ async fn main() {
1212
OsStr::new("--no-sandbox"),
1313
OsStr::new("--disable-gpu"),
1414
OsStr::new("--disable-dev-shm-usage"),
15-
OsStr::new("--remote-debugging-port=9222"),
1615
OsStr::new("--headless"),
16+
OsStr::new("--disable-software-rasterizer"),
17+
OsStr::new("--no-zygote"),
18+
OsStr::new("--single-process"),
1719
];
1820

1921
let browser = Arc::new(

0 commit comments

Comments
 (0)