The right way to initialize a client using the `ssr` package?
I'm currently following through the docs (https://supabase.com/docs/guides/auth/server-side/creating-a-client?environment=client-component#creating-a-client). I noticed that when using the
Previously, I'd use to keep a separate file like
However, based on the docs, it seems like flexibly initializing seems to be better.
I'd like to know how other people have implemented auth in their apps before. Fyi, I am trying to implement server-side auth using Supabase with Next.js. So if there's any helpful materials other than the docs, recommendations are more than welcome.
ssr package, user session is shared through the entire stack.Creating a Supabase client with the ssr package automatically configures it to use cookies. This means your user's session is available throughout the entire Next.js stack - client, server, App Router, Pages Router. It just works!
Previously, I'd use to keep a separate file like
src/lib/supabase.ts:However, based on the docs, it seems like flexibly initializing seems to be better.
I'd like to know how other people have implemented auth in their apps before. Fyi, I am trying to implement server-side auth using Supabase with Next.js. So if there's any helpful materials other than the docs, recommendations are more than welcome.