firq-dev-website/unlighthouse.config.ts

23 lines
442 B
TypeScript
Raw Normal View History

2023-07-08 21:44:31 +00:00
export default {
puppeteerOptions: {
2024-10-21 20:36:12 +00:00
args: [
"--no-sandbox",
"--disable-setuid-sandbox"
],
2023-07-08 21:44:31 +00:00
},
2024-10-21 20:58:02 +00:00
puppeteerClusterOptions: {
maxConcurrency: 1
},
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-22 20:12:02 +00:00
device: 'desktop',
2024-10-21 20:36:12 +00:00
sitemap: true,
2024-10-21 20:48:04 +00:00
throttle: false,
2024-10-22 18:53:09 +00:00
dynamicSampling: false,
2024-10-21 20:36:12 +00:00
},
2023-07-08 21:52:47 +00:00
outputPath: "unlighthouse-reports",
}