14 lines
225 B
JavaScript
14 lines
225 B
JavaScript
|
module.exports = {
|
||
|
launch: {
|
||
|
args: [
|
||
|
'--no-sandbox',
|
||
|
'--disable-setuid-sandbox'
|
||
|
],
|
||
|
defaultViewport: {
|
||
|
width: 1920,
|
||
|
height: 1080
|
||
|
},
|
||
|
headless: true
|
||
|
}
|
||
|
};
|