Hello, I have no success in setting up either of the crawlers with Browserless.
What is the proper Typescript way to do that with Browserless? Any docs? Thank you!
```ts
const crawler = new PuppeteerCrawler({
launchContext: {
useChrome: true,
launcher: puppeteer,
launchOptions: {
browserWSEndpoint: wsEndpoint, => not even connected with this option
args: [
'--no-sandbox',
'--disable-setuid-sandbox',
'--disable-dev-shm-usage'
]
}
},
```ts
const crawler = new PlaywrightCrawler({
launchContext: {
launchOptions: {
browserWSEndpoint: wsEndpoint, => not even has this property
},
},
```