19 lines
382 B
TypeScript
19 lines
382 B
TypeScript
import {defineConfig} from 'sanity'
|
|
import {structureTool} from 'sanity/structure'
|
|
import {visionTool} from '@sanity/vision'
|
|
import {schemaTypes} from './schemaTypes'
|
|
|
|
export default defineConfig({
|
|
name: 'default',
|
|
title: '54sher-home',
|
|
|
|
projectId: 'e3pzhv9j',
|
|
dataset: 'production',
|
|
|
|
plugins: [structureTool(), visionTool()],
|
|
|
|
schema: {
|
|
types: schemaTypes,
|
|
},
|
|
})
|