import { defineConfig } from 'sanity'; import { structureTool } from 'sanity/structure'; import { schemaTypes } from './schemaTypes'; export default defineConfig({ name: 'rda-v3', title: 'Highland Group RDA', // Fill these in after running `sanity init` or creating a project at sanity.io/manage projectId: process.env.SANITY_STUDIO_PROJECT_ID ?? '', dataset: process.env.SANITY_STUDIO_DATASET ?? 'production', plugins: [ structureTool(), ], schema: { types: schemaTypes, }, });