mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 09:20:00 +00:00
9e7aa0346b
* Add lighthouse run * Add lighthouse run * Update lighthouse configuration * Remove extra lighthouse files * Update lighthouserc.js * Update lighthouserc.js * Update lighthouserc.js Co-authored-by: Tatiana Mac <github@tatianamac.com>
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
module.exports = {
|
|
ci: {
|
|
upload: {
|
|
target: 'temporary-public-storage',
|
|
},
|
|
assert: {
|
|
preset: "lighthouse:no-pwa",
|
|
assertions: {
|
|
"font-display": "off",
|
|
"uses-rel-preconnect": "off",
|
|
"render-blocking-resources": "off",
|
|
"uses-long-cache-ttl": "off"
|
|
}
|
|
}
|
|
},
|
|
};
|