-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsanity.config.ts
37 lines (33 loc) · 1.2 KB
/
sanity.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* This configuration is used to for the Sanity Studio that’s mounted on the `/app/studio/[[...index]]/page.tsx` route
*/
import { visionTool } from "@sanity/vision";
import { defineConfig } from "sanity";
import { deskTool } from "sanity/desk";
import resolveProductionUrl from "@/src/sanity/config/resolveProductionUrl";
// Go to https://www.sanity.io/docs/api-versioning to learn how API versioning works
import { apiVersion, dataset, projectId } from "./src/sanity/env";
import schemas from "./src/sanity/schemas";
import { getDefaultDocumentNode } from "@/src/sanity/config/structure";
export default defineConfig({
title: "Title",
basePath: "/studio",
projectId,
dataset,
// Add and edit the content schema in the './sanity/schema' folder
schema: { types: schemas },
plugins: [
deskTool({
defaultDocumentNode: getDefaultDocumentNode,
}),
// Vision is a tool that lets you query your content with GROQ in the studio
// https://www.sanity.io/docs/the-vision-plugin
visionTool({ defaultApiVersion: apiVersion }),
],
document: {
productionUrl: async (prev, context) => {
const { document } = context;
return resolveProductionUrl(document);
},
},
});