Dan Hersam

Results 2 comments of Dan Hersam

I was experiencing this issue and adding the `--disable-dev-shm-usage` flag fixed it. ``` const browser = await puppeteer.launch({ headless: true, args: [ '--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage' ], }); ```

Thanks for the suggestion, I added it to the todo list.