Joseph

Results 197 comments of Joseph

- https://nextjs.org/docs/app/guides/incremental-static-regeneration#verifying-correct-production-behavior `NEXT_PRIVATE_DEBUG_CACHE=1` in an .env file or `NEXT_PRIVATE_DEBUG_CACHE=1 pnpm dev`, etc, would start to log cache activity, but also other ISR activity, it is a bit rough right now....

I am doing a rework of our use cache remote story. My answers here might be a bit off. You may also refer to: https://github.com/vercel/next.js/issues/85240#issuecomment-3560124078 q1: What that version is...

> FYI: "use cache" when used with a good amount of data, seems that is failing silently. It might be evicting entries. It uses a LRU in memory cache. Is...

Possibly related? https://github.com/nodejs/undici/issues/3676

Are you able to downgrade Node.js to the 18-20 range, and test?

Before I dive into this further, does it happen with simple fetch? I suspect there's some Buffer allocation going on, https://stackoverflow.com/a/8974841, but it is just an early guess...

Well looks like the upstream fix https://github.com/nodejs/undici/issues/3676 didn't do the trick right? 🤔

What issue exactly? @dispix - I have been able to repro with 16.0.6 and 16.0.7, that uploading to a Route Handler, 2gb+ fails. It is a Node.js issue, or at...

That often happens when you set the content type manually. fetch/axios recognize the body type and generate the content type header with the boundary and all (of course, this is...

Looks like a server minification issue. Running the 15.4.6 version with: ```ts import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, output: "standalone", eslint: {...