Server Error Error: Configuration must contain projectId‘
Server Error Error: Configuration must contain projectId‘
我遵循了这个教程:https://youtu.be/mx1dbMzd3tU
当我尝试连接 sanity 时,接下来我收到此错误
服务器错误
错误:配置必须包含projectId‘
当您缺少 projectId 时会出现此错误。创建 Sanity 客户端实例时必须使用 projectId:
const client = sanityClient({
projectId: 'yourproject-id',
dataset: 'your dataset',
token: 'Sanity build token',
apiVersion: 'v1',
useCdn: false // `false` if you want to ensure fresh data
})
我遵循了这个教程:https://youtu.be/mx1dbMzd3tU
当我尝试连接 sanity 时,接下来我收到此错误
服务器错误 错误:配置必须包含projectId‘
当您缺少 projectId 时会出现此错误。创建 Sanity 客户端实例时必须使用 projectId:
const client = sanityClient({
projectId: 'yourproject-id',
dataset: 'your dataset',
token: 'Sanity build token',
apiVersion: 'v1',
useCdn: false // `false` if you want to ensure fresh data
})