scripts(reporter): fix

This commit is contained in:
Cortex 2024-10-10 18:31:08 -06:00
parent 0337bdb8c8
commit fa761b895c

View file

@ -37,7 +37,8 @@ const CANARY = process.env.USE_CANARY === "true";
const browser = await pup.launch({
headless: true,
executablePath: process.env.CHROMIUM_BIN
executablePath: process.env.CHROMIUM_BIN,
args: ['--no-sandbox', '--disable-setuid-sandbox']
});
const page = await browser.newPage();