jackmerrill.com/sanity/lib/client.ts

11 lines
197 B
TypeScript
Raw Normal View History

2023-05-24 21:49:48 -07:00
import { createClient } from 'next-sanity'
import { apiVersion, dataset, projectId, useCdn } from '../env'
export const client = createClient({
apiVersion,
dataset,
projectId,
useCdn,
})