画廊架构未出现在Sanity工作室



所以我有一个Portfolio应用程序,我想在其中添加一个Gallery部分来显示图像。我创建了模式(gallery.js(并将其添加到schema.js上,但它没有出现在Sanity工作区上。有什么想法吗?

import createSchema from 'part:@sanity/base/schema-creator'
import project from './project';
import schemaTypes from 'all:part:@sanity/base/schema-type'
import blockContent from './blockContent'
import post from './post'
import author from './author'
import gallery from './gallery';
export default createSchema({
// We name our schema
name: 'default',
types: schemaTypes.concat([
// The following are document types should appear
// in the studio.
post,
gallery, // here 
project,
author,

// When added to this list, object types can be used as
// { type: 'typename' } in other document schemas
blockContent,
]),
})

gallery模式中,类型是什么?只有当它是一个文档时,它才会出现在Studio的侧边栏中。任何其他内容(包括对象(都不会出现在侧边栏中,需要在文档或其他对象中使用。

相关内容

  • 没有找到相关文章

最新更新