DEV Community

Discussion on: Automated Social Sharing Images with Puppeteer, 11ty, and Netlify

Collapse
 
5t3ph profile image
Stephanie Eckles

Updated with a better solution if using webfonts. The change was:

await page.setContent(html, {
    // This was previously `domcontentloaded`
    // Now waits for 0 network connections presuming fonts down downloading
    waitUntil: ["networkidle0"],
  });