@foo-software/lighthouse-persist
Version:
A tool for persisting Lighthouse audit results used for website performance monitoring and analysis.
11 lines • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// a bit of a hack until we only support ES Modules
// note the key here:
// https://github.com/microsoft/TypeScript/pull/44501#issue-914346744
const loadLighthouse = async () => {
const module = await import('lighthouse');
return module.default;
};
exports.default = loadLighthouse;
//# sourceMappingURL=loadLighthouse.js.map