Hono-Sessions, Cookie-Store, working for multiple domains
I have a client React app that consumes data from multiple backends.
in development, those backends are
I would love to switch to cookie based session management, but i don't want to change the backend architecture setup.
Is this possible with hono and hono-sessions?
How?
Thank you
in development, those backends are
http://localhost:8001,http://localhost:8002,http://localhost:8003,
...
and the authentication is handled fromhttp://localhost:8000
https://auth.domain.com
and i have the servers spread out through different subdomains of the same domain.
I would love to switch to cookie based session management, but i don't want to change the backend architecture setup.
Is this possible with hono and hono-sessions?
How?
Thank you