Background
I built an application that uses Puppeteer on my localhost. Now that I am trying to deploy it into a debian environment the script that r
In your nodejs code when you launch your browser, you can pass the --no-sandbox argument.
--no-sandbox
example:-
const launchBrowser = async () => { puppetBrowser = await puppeteer.launch({ args: ['--no-sandbox'], timeout: 10000, }); };