The Sanity client to use for fetching data, or false if ssr: true and it's set with setServerClient later
You may use any client that is an instanceof SanityClient or instanceof SanityStegaClient.
Example
`import {createClient} from '@sanity/client'`
Example
`import {createClient} from '@sanity/client/stega'`
Example
`import {createClient} from '@sanity/preview-kit/client'`
Example
`import {createClient} from 'next-sanity'`
Optionalssr
ssr?:boolean
If you want all data fetching to be done server-side in production, set this to true and client: false.
Then, in your server entry file, you can set the Sanity client with setServerClient.
The Sanity client to use for fetching data, or
false
ifssr: true
and it's set withsetServerClient
later You may use any client that is aninstanceof SanityClient
orinstanceof SanityStegaClient
.