3092-module_transactions #740
|
@ -58,7 +58,12 @@ module.exports = async app => {
|
||||||
async function launchBrowser() {
|
async function launchBrowser() {
|
||||||
config.browser = await puppeteer.launch({
|
config.browser = await puppeteer.launch({
|
||||||
headless: true,
|
headless: true,
|
||||||
args: ['--no-sandbox', '--disable-setuid-sandbox']
|
args: [
|
||||||
|
'--no-sandbox',
|
||||||
|
'--disable-setuid-sandbox',
|
||||||
|
'--single-process',
|
||||||
|
'--no-zygote'
|
||||||
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
config.browser.on('disconnected', launchBrowser);
|
config.browser.on('disconnected', launchBrowser);
|
||||||
|
|
Loading…
Reference in New Issue