keep on doing the same thing over and over again and expecting different results.
Test Author, 2025-09-09T19:14:00.000Z
this is third content
start
import {defineConfig} from 'sanity'
import {structureTool} from 'sanity/structure'
import {visionTool} from '@sanity/vision'
import {codeInput} from '@sanity/code-input'
import {schemaTypes} from './schemaTypes'
export default defineConfig({
name: 'default',
title: 'blog-me',
projectId: 'your-project-id',
dataset: 'production',
plugins: [
structureTool(),
visionTool(),
codeInput()
],
schema: {
types: schemaTypes,
},
})
end