import { createClient } from "next-sanity"; import { cache } from 'react'; export const projectId = process.env.NEXT_PUBLIC_SANITY_PROJECT_ID!; export const dataset = process.env.NEXT_PUBLIC_SANITY_DATASET!; const apiVersion = process.env.NEXT_PUBLIC_SANITY_API_VERSION!; export const client = createClient({ projectId, dataset, apiVersion, useCdn: false, }); export const clientFetch = cache(client.fetch.bind(client));