22 lines
408 B
TypeScript
22 lines
408 B
TypeScript
export default {
|
|
puppeteerOptions: {
|
|
args: [
|
|
"--no-sandbox",
|
|
"--disable-setuid-sandbox"
|
|
],
|
|
},
|
|
puppeteerClusterOptions: {
|
|
maxConcurrency: 1
|
|
},
|
|
ci: {
|
|
budget: 50,
|
|
buildStatic: true
|
|
},
|
|
scanner: {
|
|
device: 'mobile',
|
|
sitemap: true,
|
|
throttle: false,
|
|
},
|
|
outputPath: "unlighthouse-reports",
|
|
}
|