-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsanity.config.ts
55 lines (54 loc) · 1.16 KB
/
sanity.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { defineConfig } from 'sanity'
import { deskTool } from 'sanity/desk'
import { markdownSchema } from 'sanity-plugin-markdown'
export default defineConfig({
name: 'default',
title: 'homepage',
projectId: 'i4m7aez4',
dataset: 'production',
plugins: [deskTool(), markdownSchema()],
schema: {
types: [
{
name: 'post',
type: 'document',
title: 'Post',
fields: [
{
name: 'title',
title: 'Title',
type: 'string'
},
{
name: 'slug',
title: 'Slug',
type: 'slug',
options: {
source: 'title'
}
},
{
name: 'coverImage',
title: 'Cover Image',
type: 'image'
},
{
name: 'description',
title: 'Description',
type: 'string'
},
{
name: 'content',
title: 'Content',
type: 'markdown'
},
{
name: 'date',
title: 'Date',
type: 'datetime'
}
]
}
]
}
})