29 lines
737 B
JavaScript
29 lines
737 B
JavaScript
|
|
module.exports = {
|
||
|
|
ci: {
|
||
|
|
collect: {
|
||
|
|
staticDistDir: './dist',
|
||
|
|
url: [
|
||
|
|
'http://localhost/index.html',
|
||
|
|
'http://localhost/pricing/index.html',
|
||
|
|
'http://localhost/imprint/index.html',
|
||
|
|
'http://localhost/privacy/index.html',
|
||
|
|
],
|
||
|
|
numberOfRuns: 1,
|
||
|
|
settings: {
|
||
|
|
preset: 'desktop',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
assert: {
|
||
|
|
assertions: {
|
||
|
|
'categories:performance': ['error', { minScore: 0.95 }],
|
||
|
|
'categories:accessibility': ['error', { minScore: 0.95 }],
|
||
|
|
'categories:best-practices': ['error', { minScore: 0.95 }],
|
||
|
|
'categories:seo': ['error', { minScore: 0.95 }],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
upload: {
|
||
|
|
target: 'temporary-public-storage',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|