Are nanostores safe to use in the server during SSR ?
Recently this post about zustand for RSC and SSR got a lot of traction.https://github.com/pmndrs/zustand/discussions/2200
And I'm wondering if nanostores have the same issues.
Will the stores be cached due to "hot" serverless functions, resulting is users receiving the wroung UI ?
GitHub
PSA: There's no such thing as state on server. It's unwise to do anything that assumes there is. I feel like there's a lot of people who believe we can use Zustand to add state manageme...