We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 901740c commit 8a6e958Copy full SHA for 8a6e958
plugins/wcag.js
@@ -32,7 +32,10 @@ export class WcagPlugin extends Plugin {
32
*/
33
static async fetchHtml(url) {
34
console.log(`Fetching rendered HTML for: ${url}`);
35
- const browser = await puppeteer.launch({ headless: true });
+ const browser = await puppeteer.launch({
36
+ headless: true,
37
+ args: ['--no-sandbox', '--disable-setuid-sandbox']
38
+ });
39
const page = await browser.newPage();
40
41
try {
0 commit comments