Recibo un error al buscar blogs de cordura en mi plantilla, estoy creando un sitio web next.js
Error: Error: Tipo de bloque desconocido "indefinido", especifique un serializador para él en
serializers.typesprop
<PortableText // Pass in block content straight from Sanity.io content={blogs[0].content} projectId="oeqragbg" dataset="production" // Optionally override marks, decorators, blocks, etc. in a flat // structure without doing any gymnastics serializers = {{ h1: (props) => <h1 style={{ color: "red" }} {...props} />, li: ({ children }) => <li className="special-list-item">{children}</li>, }} /> export async function getServerSideProps(context) { const client = createClient({ projectId: 'oeqragbg', dataset: 'production', useCdn: false }); const query = '*[_type == "blog"]'; const blogs = await client.fetch(query); return { props: { blogs } } }