Files
supabase/apps/docs/content/guides/auth/server-side.mdx
2026-06-01 15:55:06 +02:00

36 lines
1.7 KiB
Plaintext

---
title: 'Server-Side Rendering'
subtitle: 'How SSR works with Supabase Auth.'
---
SSR frameworks move rendering and data fetches to the server, to reduce client bundle size and execution time.
Supabase Auth is fully compatible with SSR. You need to make a few changes to the configuration of your Supabase client, to store the user session in cookies instead of local storage. After setting up your Supabase client, follow the instructions for any flow in the How-To guides.
<Admonition type="tip">
Make sure to use the PKCE flow instructions where those differ from the implicit flow instructions. If no difference is mentioned, don't worry about this.
</Admonition>
## `@supabase/ssr`
We have developed an [`@supabase/ssr`](https://www.npmjs.com/package/@supabase/ssr) package to make setting up the Supabase client as simple as possible. This package is currently in beta. Adoption is recommended but be aware that the API is still unstable and may have breaking changes in the future.
## Framework quickstarts
<div className="grid grid-cols-[repeat(auto-fit,minmax(300px,1fr))] gap-6 mb-6 not-prose">
<Link href="/guides/auth/server-side/nextjs" passHref>
<GlassPanel title="Next.js" background={false} icon="/docs/img/icons/nextjs-icon">
Automatically configure Supabase in Next.js to use cookies, making your user and their session
available on the client and server.
</GlassPanel>
</Link>
<Link href="/guides/auth/server-side/sveltekit" passHref>
<GlassPanel title="SvelteKit" background={false} icon="/docs/img/icons/svelte-icon">
Automatically configure Supabase in SvelteKit to use cookies, making your user and their
session available on the client and server.
</GlassPanel>
</Link>
</div>