-
Notifications
You must be signed in to change notification settings - Fork 0
/
sanity-template.json
59 lines (59 loc) · 1.55 KB
/
sanity-template.json
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
56
57
58
59
{
"version": 2,
"title": "Sanity.io starter template with Jigsaw",
"description": "Jigsaw (https://jigsaw.tighten.co) starter kit which sources content from Sanity (https://sanity.io) deployed on Netlify",
"previewMedia": {
"type": "image",
"src": "assets/frontend.png",
"alt": "Netlify"
},
"technologies": [
{
"id": "jigsaw",
"name": "jigsaw",
"url": "https://jigsaw.tighten.co"
}
],
"deployment": {
"provider": "netlify",
"sites": [
{
"id": "studio",
"type": "studio",
"title": "Sanity Studio",
"description": "The Sanity Studio is where you edit and structure your content.",
"dir": "./studio",
"previewMedia": {
"type": "image",
"src": "assets/studio.jpg",
"alt": "A preview image of the Sanity Studio."
},
"buildSettings": {
"base": "studio",
"dir": "dist",
"cmd": "npm run build && cp netlify.toml dist"
},
"requirements": [
"build-hook"
]
},
{
"id": "web",
"type": "web",
"title": "Blog Website",
"description": "A minimal example of a frontend fetching data from Sanity.io.",
"dir": "./web",
"buildSettings": {
"base": "web",
"dir": "build_production",
"cmd": "npm run production"
},
"previewMedia": {
"type": "image",
"src": "assets/frontend.png",
"alt": "A preview image of the webpage."
}
}
]
}
}