We are building a Qwik SSR + SPA app with:
Access token (JWT, short-lived) → stored in client memory
Refresh token → HttpOnly cookie
Client-side works well (401 → refresh → retry).
Problem in SSR (routeLoader$, server$):
Server cannot access client memory (access token)
Only cookies are available
Is there a Qwik-idiomatic way to reuse access token across client → server?
Any recommended pattern using onRequest, sharedMap, or others?
Constraints:
No access token in cookies
No localStorage