Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/3.services/1.serverSupabaseClient.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const fetchLibrary = async () => {
}
```

Be careful, if you want to call this route on SSR, please read this [section](https://nuxt.com/docs/getting-started/data-fetching#isomorphic-fetch-and-fetch), you must send your browser cookies including your supabase token.
Be careful, if you want to call this route on SSR, please read this [section](https://nuxt.com/docs/getting-started/data-fetching#pass-client-headers-to-the-api), you must send your browser cookies including your supabase token.

```ts [pages/index.vue]
const { data: { libraries }} = await useFetch('/api/libraries', {
Expand Down
Loading