You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even after adding param, it complains lighthouse is not callable. I had to explicitly use the default like:
Lighthouse.default(url, flags, config)
In order to make it work.
using lighthouse version 11.2.0
Trying to import lighthouse using dynamic import in a typescript, node project.
Snippet:
Import('lighthouse').then(async () => {
const result = await lighthouse(url, flags, config);
// getting an error "this expression is not callable"
}
The text was updated successfully, but these errors were encountered: