1
0
Fork 0
freesewing/sites/sanity/sanity.config.js
2022-12-22 19:20:36 +01:00

19 lines
444 B
JavaScript

import { defineConfig } from 'sanity'
import { deskTool } from 'sanity/desk'
import { visionTool } from '@sanity/vision'
import { markdownSchema } from 'sanity-plugin-markdown'
import { schemaTypes } from './schemas'
export default defineConfig({
name: 'default',
title: 'FreeSewing',
projectId: 'hl5bw8cj',
dataset: 'production',
plugins: [deskTool(), visionTool(), markdownSchema()],
schema: {
types: schemaTypes,
},
})