Skip to content

Commit

Permalink
docs: apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: dng <danny@supabase.io>
  • Loading branch information
hf and dng committed Sep 26, 2022
1 parent 9e0cb8a commit c1015af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions apps/reference/docs/guides/auth/server-side-rendering.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,14 @@ is to get the user's details with `getUser()`.

### What should I use for the `SameSite` property?

Make sure you [understand the behavior of the parameter in different
situations](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite),
as your users can be experiencing a degraded user experience.
Make sure you [understand the behavior of the property in different
situations](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite)
as some properties can degrade the user experience.

A good default is to use `Lax` which will send cookies when users are
A good default is to use `Lax` which sends cookies when users are
navigating to your site. Cookies typically require the `Secure` attribute,
which will only send them over HTTPS. However, this can sometimes be a problem
when developing on `localhost`.
which only sends them over HTTPS. However, this can be a problem when
developing on `localhost`.

### Can I use server-side rendering with a CDN or cache?

Expand Down

0 comments on commit c1015af

Please sign in to comment.