{
type: 'tabs',
tabs: [
{
fields: [
{
name: 'hero',
type: 'upload',
relationTo: 'media',
},
{
name: 'content',
type: 'richText',
editor: lexicalEditor({
features: ({ rootFeatures }) => {
return [
...rootFeatures,
HeadingFeature({ enabledHeadingSizes: ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'] }),
FixedToolbarFeature(),
InlineToolbarFeature(),
HorizontalRuleFeature(),
YoutubeFeature(),
EXPERIMENTAL_TableFeature(),
]
},
}),
label: false,
required: true,
},
],
label: 'Content',
},
],
},