generated from sanity-io/nextjs-blog-cms-sanity-v3
-
Notifications
You must be signed in to change notification settings - Fork 62
/
sanity.config.ts
67 lines (63 loc) · 2.09 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
'use client'
/**
* This config is used to set up Sanity Studio that's mounted on the `app/studio/[[...index]]/page.tsx` route
*/
import { visionTool } from '@sanity/vision'
import { defineConfig } from 'sanity'
import { presentationTool } from 'sanity/presentation'
import { structureTool } from 'sanity/structure'
import { unsplashImageAsset } from 'sanity-plugin-asset-source-unsplash'
import { apiVersion, dataset, projectId, studioUrl } from '@/sanity/lib/api'
import * as resolve from '@/sanity/plugins/resolve'
import { pageStructure, singletonPlugin } from '@/sanity/plugins/settings'
import page from '@/sanity/schemas/documents/page'
import project from '@/sanity/schemas/documents/project'
import duration from '@/sanity/schemas/objects/duration'
import milestone from '@/sanity/schemas/objects/milestone'
import timeline from '@/sanity/schemas/objects/timeline'
import home from '@/sanity/schemas/singletons/home'
import settings from '@/sanity/schemas/singletons/settings'
const title =
process.env.NEXT_PUBLIC_SANITY_PROJECT_TITLE ||
'Next.js Personal Website with Sanity.io'
export default defineConfig({
basePath: studioUrl,
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,
],
},
plugins: [
structureTool({
structure: pageStructure([home, settings]),
}),
presentationTool({
resolve,
previewUrl: {
previewMode: {
enable: '/api/draft-mode/enable',
},
},
}),
// 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 }),
],
})