www_indaba/sanity/lib/client.ts
2025-06-04 15:46:31 +02:00

11 lines
279 B
TypeScript

import { createClient } from 'next-sanity'
import { apiVersion, dataset, projectId } from '../env'
export const client = createClient({
projectId,
dataset,
apiVersion,
useCdn: true, // Set to false if statically generating pages, using ISR or tag-based revalidation
})