mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 09:20:00 +00:00
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"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
};
|