Shawn Inder
Shawn Inder
I get a similar result with: ```javascript const response = await fetch(...) response.body.pipe(res) ``` On the receiving end I just get a 204 with no content, yet fetch does respond...
Indeed, many times I find whitelisting easier than blacklisting… Using both exclude and include together can also be powerful: ``` exclude: - .* include: - .exception ``` Right now I'm...
I'm having a similar issue as well (it's too fast and doesn't respect my setting).
Could this be because the measured container and marquee sizes are used before they are set? See https://github.com/justin-chu/react-fast-marquee/blob/8dd03310d0d1a924645437868542b3c279405338/src/components/Marquee.tsx#L129 If this line expects the values to have been updated (by `setContainerWidth`...
@ckoopmann I am getting an error I believe you got in the past: `MongoError['No primary node is available! (Supervisor-1/Connection-1)']`. I tried the solution you mention [there](https://discord.com/channels/280713822073913354/693123750845218836/706063857042325554) and here in this...
Apparently Twitter have a helper library for exactly this purpose: https://github.com/twitter/twitter-text
I was hoping to use the `` tag along with my `next/image` `` tags to fetch a different image based on the user's preferred color scheme. Would this kind of...
I'm having less luck with this problem myself. I made a repo dedicated to getting to the bottom of this, and although that repo reproduces the problem, the problem disappears...
That version doesn't work for me locally either. Just to rule out the obvious: - Locally, your browser could be finding a service worker in it's application cache for localhost:3000,...
My understanding of why `async` fixes the tests is the following: If another plugin assigns an async function to `nextConfig.webpack` (as next-manifest does), then the Next.js build tools can know...