firq-dev-website/unlighthouse.config.ts
Firq 4eb390d0b1
All checks were successful
/ get-version (push) Successful in 2s
/ astro-check (push) Successful in 14s
/ check-tag (push) Successful in 2s
/ checking (push) Successful in 14s
/ build-site (push) Successful in 1m11s
/ create-release (push) Successful in 6s
/ auto-deploy-dockge (push) Successful in 23s
/ run-unlighthouse (push) Successful in 0s
unlighthouse change + accessibility
2024-10-24 20:07:39 +02:00

33 lines
731 B
TypeScript

export default {
lighthouseOptions: {
throttlingMethod: "devtools",
throttling: {
cpuSlowdownMultiplier: 4,
requestLatencyMs: 150,
downloadThroughputKbps: 1638.4,
uploadThroughputKbps: 1638.4,
},
screenEmulation: {
width: 412,
height: 823,
deviceScaleFactor: 1.75,
}
},
puppeteerOptions: {
args: [
"--no-sandbox",
"--disable-setuid-sandbox"
],
},
ci: {
budget: 50,
buildStatic: true,
},
scanner: {
sitemap: true,
dynamicSampling: false,
samples: 3,
},
outputPath: "unlighthouse-reports",
}