* docs: add cloud plans & pricing page * fix buttons * simplify condition * remove test frontmatter * design fixes and changes * styling fixes * change node version for tests * fix build error * fix tests * fix github pipeline
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
import { createClient } from "@sanity/client"
|
|
|
|
export const sanityClient = createClient({
|
|
projectId: process.env.NEXT_PUBLIC_SANITY_PROJECT_ID || "",
|
|
dataset: process.env.NEXT_PUBLIC_SANITY_DATASET || "production",
|
|
apiVersion: "2025-02-19",
|
|
useCdn: false,
|
|
})
|