beam-cli
Version:
A beautifully simple CLI for running Lighthouse audits on a statically generated (SSG) website
25 lines (24 loc) • 468 B
JavaScript
/**
* **Default Options.**
* Will be merged with the user configuration to form the
* options used.
*/
export const defaultOptions = {
dist: 'dist',
include: ['**/*.html'],
static: true,
output: {
folder: '.beam',
html: true,
json: false,
},
server: {
port: 3000,
brotliCompressionLevel: 11,
},
lighthouse: {
categories: 'all',
mobile: true,
desktop: false,
},
};