mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
20 lines
354 B
TypeScript
20 lines
354 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,
|
||
|
|
},
|
||
|
|
});
|