firq-dev-website/unlighthouse.config.ts
Firq 5dfbd2cccd
All checks were successful
/ get-version (push) Successful in 2s
/ astro-check (push) Successful in 11s
/ check-tag (push) Successful in 2s
/ checking (push) Successful in 11s
/ build-site (push) Successful in 1m8s
/ run-unlighthouse (push) Successful in 0s
/ create-release (push) Successful in 5s
/ auto-deploy-dockge (push) Successful in 16s
PageSpeed Insights config
2024-10-23 00:20:44 +02:00

36 lines
795 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"
],
},
puppeteerClusterOptions: {
maxConcurrency: 1
},
ci: {
budget: 50,
buildStatic: true,
},
scanner: {
sitemap: true,
dynamicSampling: false,
samples: 3,
},
outputPath: "unlighthouse-reports",
}