firq-dev-website/unlighthouse.config.ts
Firq 950eb1d9f3
All checks were successful
/ get-version (push) Successful in 2s
/ astro-check (push) Successful in 11s
/ unlighthouse (push) Successful in 52s
/ deploy-unlighthouse-files (push) Successful in 6s
/ deploy-unlighthouse-site (push) Successful in 5s
Reduces Puppeteer concurrency
2024-10-21 22:58:02 +02:00

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",
}