File size: 451 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { createClient } from "next-sanity";
import { apiVersion, dataset, projectId, studioUrl } from "@/sanity/lib/api";
export const client = createClient({
projectId,
dataset,
apiVersion,
useCdn: true,
perspective: "published",
stega: {
studioUrl,
logger: console,
filter: (props) => {
if (props.sourcePath.at(-1) === "title") {
return true;
}
return props.filterDefault(props);
},
},
});
|