mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 09:20:00 +00:00
cfa36a5a52
* Updates dependencies * Fixes tap target to resolve lighthouse * Merge conflicts
17 lines
329 B
JavaScript
17 lines
329 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'
|
|
}
|
|
}
|
|
}
|
|
};
|