Luud Janssen

Results 12 comments of Luud Janssen

We're using Undici in a project I'm working on. We're in need of this in the short term, so I'm thinking of writing this adapter myself. If anyone is already...

I tried creating the Undici adapter, but the standard mocking tools for Undici don't support asynchronous callbacks. I created an [issue](https://github.com/nodejs/undici/issues/1348), but for now we will be moving away from...

I made a PR for this issue (#452). Could be that this is actually an issue on Next.js's side, but don't have the in-depth knowledge to say anything about that.

## For people who want to "hack in" mousewheel support, this was my approach: - Install the [wheel](https://www.npmjs.com/package/wheel) NPM package which uses [MDN's cross browser event listener for wheel events](https://developer.mozilla.org/en-US/docs/Web/Events/wheel#Browser_compatibility)....

> Anyway to do this without Jquery? Trying to codepen this and having no luck... @joebentaylor, my hack isn't using jQuery if I'm correct. What issue are you encountering?

v12.3.0 does not seem to have fixed the issue for us. The issue @clarkeverdel mentioned is still happening: - Using middleware - Using `getStaticProps` - Without query parameters - Client...

>Or the CDN — if HTML were suitable for caching by the server I'm an avid user of Next.js and it has always bothered me that Next.js can't share it's...

I'm running into this issue as well, where I have a monorepo and I want to reuse all of the `README.md` files of the packages throughout the repository, but still...

For anyone interested; I created a Remark plugin to transform GitHub's syntax to the directives syntax used by admonitions: [remark-github-admonitions-to-directives](https://github.com/incentro-dc/remark-github-admonitions-to-directives)

I used this dirty trick to split the header and body row(s): ```tsx [BLOCKS.TABLE]: (_node: unknown, children: ReactNode): ReactNode => { const [header, ...body] = children as ReactNode[]; return (...