16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
// ps https://github.com/GoogleChrome/puppeteer/issues/3120
|
|
module.exports = {
|
|
launch: {
|
|
headless: true,
|
|
args: [
|
|
'--disable-gpu',
|
|
'--disable-dev-shm-usage',
|
|
'--disable-setuid-sandbox',
|
|
'--no-first-run',
|
|
'--no-sandbox',
|
|
'--no-zygote',
|
|
'--single-process',
|
|
],
|
|
},
|
|
};
|