Heyo! It seems that using 14.2.1 (so far I know), I am suddenly getting a weird error. `Error: The

Heyo!

It seems that using 14.2.1 (so far I know), I am suddenly getting a weird error.
Error: The 'cache' field on 'RequestInitializerDict' is not implemented., when googling this, I found some supabase stuff, which I don't use.

However, my code contains a fetch on the page, which is for example:
  const response = await fetch(
    `${process.env.NEXT_PUBLIC_API_URL}/v1/databases/hp_db/collections/userdata/documents`,
    {
      method: 'GET',
      headers: {
        'Content-Type': 'application/json',
        'X-Appwrite-Project': `${process.env.NEXT_PUBLIC_APPWRITE_PROJECT_ID}`,
        'X-Appwrite-Response-Format': '1.4.0',
      },
      cache: 'no-cache',
    }
  )


The issue here, is the
cache
part, if I remove it, it works fine. What's wrong with the no-cache? Is there a reason why it suddenly does not work anymore?
Was this page helpful?