improve default puppeteer timeout

This commit is contained in:
orangecoding
2026-02-18 20:06:22 +01:00
parent 00d6a12b30
commit fdd7e835e8

View File

@@ -50,7 +50,7 @@ export async function launchBrowser(url, options) {
const browser = await puppeteer.launch({
headless: options?.puppeteerHeadless ?? true,
args: launchArgs,
timeout: options?.puppeteerTimeout || 30_000,
timeout: options?.puppeteerTimeout || 45_000,
userDataDir,
executablePath: options?.executablePath,
});