generated from sanity-io/sanity-template-vercel-visual-editing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sanity.config.ts
68 lines (66 loc) · 2.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
'use client'
/**
* This config is used to set up Sanity Studio that's mounted on the `/pages/studio/[[...index]].tsx` route
*/
import { visionTool } from '@sanity/vision'
import { apiVersion, basePath, dataset, projectId } from 'lib/sanity.api'
import { locate } from 'plugins/locate'
import { pageStructure, singletonPlugin } from 'plugins/settings'
import { defineConfig } from 'sanity'
import { presentationTool } from 'sanity/presentation'
import { structureTool } from 'sanity/structure'
import { unsplashImageAsset } from 'sanity-plugin-asset-source-unsplash'
import page from 'schemas/documents/page'
import project from 'schemas/documents/project'
import duration from 'schemas/objects/duration'
import milestone from 'schemas/objects/milestone'
import timeline from 'schemas/objects/timeline'
import youtube from 'schemas/objects/youtube'
import home from 'schemas/singletons/home'
import settings from 'schemas/singletons/settings'
import { debugSecrets } from '@sanity/preview-url-secret/sanity-plugin-debug-secrets'
const title = process.env.NEXT_PUBLIC_SANITY_PROJECT_TITLE
export default defineConfig({
basePath,
projectId: projectId || '',
dataset: dataset || '',
title,
schema: {
// If you want more content types, you can add them to this array
types: [
// Singletons
home,
settings,
// Documents
duration,
page,
project,
// Objects
milestone,
timeline,
youtube,
],
},
plugins: [
presentationTool({
locate,
previewUrl: {
previewMode: {
enable: '/api/draft',
},
},
}),
structureTool({
structure: pageStructure([home, settings]),
}),
// Configures the global "new document" button, and document actions, to suit the Settings document singleton
singletonPlugin([home.name, settings.name]),
// Add an image asset source for Unsplash
unsplashImageAsset(),
// Vision lets you query your content with GROQ in the studio
// https://www.sanity.io/docs/the-vision-plugin
visionTool({ defaultApiVersion: apiVersion }),
// See url preview secrets in the schema for debugging
process.env.NODE_ENV === 'development' && debugSecrets(),
].filter(Boolean),
})