where redirect() is a function which returns a blockingResponse of
return { redirectUrl: "someUrl" };
which will initiate a redirection.
My questions are:
Is there any way to track the request initiated by such redirection, which gives information about possible errors (e.g. timeout, no internet) and HTTP status codes? Or is there some other way to do it around?