Hi, i created a custom fetch plugin for my external api. I read the document about that: https://nuxt.com/docs/guide/recipes/custom-usefetch, but i have a trouble with JWT validation based on cookies (actually all process about cookies) . As you know we can not send credentials (cookies) with $fetch (https://github.com/nuxt/nuxt/issues/24813) in SSR, but we can work arround this with useRequestFetch. So i tried to create a custom fetch plugin with useRequestFetch, but the problem is when i tried to use useRequestFetch i get Nuxt context error (https://nuxt.com/docs/guide/going-further/nuxt-app#the-nuxt-context). So i create a custom fetch plugin compatible with SSR and client:
Describe the feature When having API routes in Nuxt with authentication (using H3 useSession or nuxt-auth-utils), we need to forward the cookie to the API routes when fetching the data on SSR. Not ...