blob: 96253caf57fb8c0c2960b63c3fe37ff89f2a3039 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { env } from "$env/dynamic/private";
import createSanityClient from "@sanity/client";
export const sanity = createSanityClient({
projectId: env.SANITY_STUDIO_API_PROJECT_ID,
dataset: env.SANITY_STUDIO_API_DATASET,
apiVersion: "2022-03-24",
useCdn: true,
});
|