UNPKG

generator-nitro

Version:

Yeoman generator for the nitro frontend framework

33 lines (30 loc) 672 B
'use strict'; /** * lighthouse configuration * test requires a build */ module.exports = { extends: 'lighthouse:default', settings: { // https://github.com/GoogleChrome/lighthouse/blob/master/docs/configuration.md onlyCategories: ['performance', 'accessibility', 'best-practices', 'seo'], skipAudits: [ // performance 'redirects', 'redirects-http', 'server-response-time', 'uses-http2', 'uses-long-cache-ttl', // best-practices 'csp-xss', 'is-on-https', 'redirects-http', // seo 'document-title', 'http-status-code', 'is-crawlable', 'meta-description', 'robots-txt', ], }, };