Hristo Koev

Results 6 comments of Hristo Koev

> I'm encountering a similar issue since `beta 90`, currently on `beta 97` with next.js `canary.104`. I'm using this template https://github.com/payloadcms/payload-3.0-demo with the following changes. > > 1. A Media...

Just in case, sharing the [thread on Discord with a video, displaying the error](https://discord.com/channels/967097582721572934/1278151539550060564/1278157997067206718).

Hi, I've updated to the latest version (v3.0.0-beta.111) and this issue persists. My server log is full of these errors, which happen every time the modal window of the upload...

I had that issue way back in beta.55 and for the life of me couldn't figure out how or why it happened. Never happened again. I cleaned up the whole...

I believe it's running in Nodejs, and it's not using Nextjs' fetch function, so make sure to add a timestamp, like ```ts const cacheBuster = Date.now() const url = `https://api.example.com/?_t=${cacheBuster}...

Next.js extends the `fetch()` function with `{ cache: 'force-cache' | 'no-store' }`, but the default `fetch()` function doesn't have it. So if cron jobs are running as Node.js process as...