diff --git a/index.mjs b/index.mjs index 53b173b..e0a9a0f 100644 --- a/index.mjs +++ b/index.mjs @@ -16,7 +16,10 @@ const contas = { async function parseLogRocketBlogHome(conta) { // Launch the browser - const browser = await puppeteer.launch(); + const browser = await puppeteer.launch({ + args: ["--no-sandbox"], + timeout: 10000, + }); // Open a new tab const page = await browser.newPage();