Fiddle with shooter

This commit is contained in:
Jordan Eldredge 2025-06-05 02:52:14 -04:00
parent c47498120c
commit 1761e9101f

View file

@ -31,7 +31,11 @@ export default class Shooter {
this._log("init()");
this._log("Going to launch puppeteer");
this._browser = await puppeteer.launch({
args: ["--disable-dev-shm-usage"],
args: [
"--disable-dev-shm-usage",
"--no-sandbox",
"--disable-setuid-sandbox",
],
});
this._log("Opening new page");
this._page = await this._browser.newPage();