import { defineConfig } from 'sanity'; import { structureTool } from 'sanity/structure'; import { visionTool } from '@sanity/vision'; 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(), visionTool(), // GROQ query playground — remove in production if desired ], schema: { types: schemaTypes, }, });