hi there,
i'm using nuxt-proxy and it works well on client-side, my mean is if you call a request on browser(for example submiting a form or clicking on a RouterLink) but it doesn't work if my request runs on server-side(for example when i refresh my page and i have a await useFetch() request on top of script setup) in this case it gives me error with 500 status code.
hi there, i'm using nuxt-proxy and it works well on client-side, my mean is if you call a request on browser(for example submiting a form or clicking on a RouterLink) but it doesn't work if my request runs on server-side(for example when i refresh my page and i have a
await useFetch()
request on top of script setup) in this case it gives me error with 500 status code.nuxt.config.ts
i receive this error when i refresh my page and request runs on nuxt server-side
but this request works fine on client-side How can I fix it? I want this to work on client-side and server-side