Hello
i have a proxy server that handles login and logout through /api/auth
when unverified user tries to enter a route, i have a function that checks if a user is logged in and then redirects it to /api/auth/login if not logged in
remix redirect tries to find a route that matches this pattern instead of hitting the proxy middleware.
i found this thread: https://github.com/remix-run/remix/issues/3765
but it seems there's only a workaround for client side navigation but i want it to work server side!
any solutions?
thanks in advance!