Prismic.io をヘッドレス CMS として使用し、React フロント エンドにコンテンツを取り込みます。フィールドが必須になるようにコンテンツ タイプを設定するにはどうすればよいですか?
これが私がこれまでに持っているものです...
{
"Main" : {
"uid" : {
"type" : "UID",
"config" : {
"placeholder" : "UID"
}
},
"image" : {
"type" : "Image"
},
"title" : {
"type" : "StructuredText",
"config" : {
"single" : "heading1",
"placeholder" : "Title..."
}
},
"description" : {
"type" : "StructuredText",
"config" : {
"multi" : "paragraph,em,strong,hyperlink",
"placeholder" : "Description..."
}
}
}
}