Apify Discord Mirror

Updated 5 months ago

--disable-dev-shm-usage

At a glance

The community member posted a question about how to run Puppeteer with a specific tag, presumably within the Crawlee framework. Another community member responded with a suggestion to try the following code, but noted that they are not sure how it will affect the run:

const crawler = new PuppeteerCrawler({ launchContext: { launchOptions: { args: [ '--disable-dev-shm-usage', ] } }, // ... });

There is no explicitly marked answer in the provided information.

How can I run puppeteer with this tag ? (obviously inside Crawlee)
N
P
2 comments
are you around ?
You may try, but I am not currently sure how this will affect the run...
Plain Text
const crawler = new PuppeteerCrawler({
  launchContext: {
    launchOptions: {
      args: [
        '--disable-dev-shm-usage',
      ]
    }
  },
  // ...
});
Add a reply
Sign up and join the conversation on Discord