firq-dev-website/unlighthouse.config.ts

33 lines
731 B
TypeScript
Raw Normal View History

2023-07-08 21:44:31 +00:00
export default {
2024-10-22 22:20:44 +00:00
lighthouseOptions: {
throttlingMethod: "devtools",
throttling: {
cpuSlowdownMultiplier: 4,
requestLatencyMs: 150,
downloadThroughputKbps: 1638.4,
uploadThroughputKbps: 1638.4,
},
screenEmulation: {
width: 412,
height: 823,
deviceScaleFactor: 1.75,
}
},
2023-07-08 21:44:31 +00:00
puppeteerOptions: {
2024-10-21 20:36:12 +00:00
args: [
"--no-sandbox",
"--disable-setuid-sandbox"
],
2023-07-08 21:44:31 +00:00
},
2023-07-08 21:52:47 +00:00
ci: {
2023-12-29 13:39:08 +00:00
budget: 50,
2024-10-22 18:53:09 +00:00
buildStatic: true,
2023-07-08 21:52:47 +00:00
},
2024-10-21 20:36:12 +00:00
scanner: {
2024-10-24 18:07:39 +00:00
sitemap: true,
2024-10-22 18:53:09 +00:00
dynamicSampling: false,
2024-10-22 22:01:07 +00:00
samples: 3,
2024-10-21 20:36:12 +00:00
},
2023-07-08 21:52:47 +00:00
outputPath: "unlighthouse-reports",
}