Andreas Donig
Andreas Donig
I was asking myself the same question. I browsed through the code and found this place: https://github.com/Aljullu/react-lazy-load-image-component/blob/7457b954c2d803332d62171590cc3fbf6d6858d8/src/components/LazyLoadImage.jsx#L47 Also when you use the Github search to find occurrences of the string...
This is mainly [an issue with Lighthouse](https://web.dev/uses-passive-event-listeners/). Are there any known workarounds to make react/preact pass?
What will happen if someone replaces `useCapture` with `{ capture: useCapture, passive: true }` here? https://github.com/preactjs/preact/blob/0c14a92a98e8ed8427aa4a9dc9db09045fc5b27a/src/diff/props.js#L102 Will it break something? 😅
@developit I see. So even when we differentiate between certain types of events, the lighthouse check would complain about the one addEventListener call without the truthy passive option. I think...
Correction: It looks like it worked like this 1. Collect all event listeners on the page. 2. Filter out non-touch and non-wheel listeners. 3. Filter out listeners that call preventDefault()....
> Where do I find the directory on macOS I just deleted the `~/Library/Application Support/gephi` directory and it worked.
@sbardian Yes. I use `useAutoGen=true` and have categories of things with slugs like `///`. I override the crumbLabel for the things with their title dynamically but the link pointing to...
@sbardian I wrote some code that allows people to set the crumbLabel in the page context, see here: https://github.com/adonig/gatsby-plugin-breadcrumb/blob/develop/src/gatsby-node.js If you are interested, I can make it a pull request.
> did you create them using your projects gatsby-node.js and implementing createPages? Say using a template page /etc. @sbardian Yes, exactly. I create them in gatsby-node.js using gatsby-transformer-csv.
@sbardian I'm currently using my fork. https://github.com/adonig/gatsby-plugin-breadcrumb/blob/develop/src/gatsby-node.js Maybe I can quickly explain what it does. So what I'm doing here, is setting the crumb labels in the page context in...