plano/apps/www/sanity.config.ts
2025-11-26 14:44:18 -08:00

19 lines
No EOL
353 B
TypeScript

import { defineConfig } from "sanity";
import { structureTool } from "sanity/structure";
import { schemaTypes } from "./schemaTypes";
export default defineConfig({
name: "default",
title: "Plano",
projectId: "71ny25bn",
dataset: "production",
basePath: "/studio",
plugins: [structureTool()],
schema: {
types: schemaTypes,
},
});