2025-12-18 15:55:15 -08:00
|
|
|
import { defineConfig } from "sanity";
|
2026-01-28 17:52:39 -08:00
|
|
|
import { codeInput } from "@sanity/code-input";
|
|
|
|
|
import { table } from "@sanity/table";
|
|
|
|
|
import { markdownSchema } from "sanity-plugin-markdown";
|
2025-12-18 15:55:15 -08:00
|
|
|
import { structureTool } from "sanity/structure";
|
|
|
|
|
import { schemaTypes } from "./schemaTypes";
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
name: "default",
|
|
|
|
|
title: "Plano",
|
|
|
|
|
|
|
|
|
|
projectId: "71ny25bn",
|
|
|
|
|
dataset: "production",
|
|
|
|
|
|
|
|
|
|
basePath: "/studio",
|
|
|
|
|
|
2026-01-28 17:52:39 -08:00
|
|
|
plugins: [structureTool(), codeInput(), table(), markdownSchema()],
|
2025-12-18 15:55:15 -08:00
|
|
|
|
|
|
|
|
schema: {
|
|
|
|
|
types: schemaTypes,
|
|
|
|
|
},
|
|
|
|
|
});
|