26 lines
829 B
TypeScript
26 lines
829 B
TypeScript
|
/**
|
|||
|
* This configuration is used to for the Sanity Studio that’s mounted on the `/pages/studio/page.tsx` route
|
|||
|
*/
|
|||
|
|
|||
|
import { visionTool } from "@sanity/vision";
|
|||
|
import { defineConfig } from "sanity";
|
|||
|
import { structureTool } from "sanity/structure";
|
|||
|
|
|||
|
// Go to https://www.sanity.io/docs/api-versioning to learn how API versioning works
|
|||
|
import { apiVersion, dataset, projectId } from "./sanity/env";
|
|||
|
import { schema } from "./sanity/schema";
|
|||
|
|
|||
|
export default defineConfig({
|
|||
|
basePath: "/console",
|
|||
|
projectId,
|
|||
|
dataset,
|
|||
|
// Add and edit the content schema in the './sanity/schema' folder
|
|||
|
schema,
|
|||
|
plugins: [
|
|||
|
structureTool(),
|
|||
|
// 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 }),
|
|||
|
],
|
|||
|
});
|