blokkli key in your nuxt.config.ts file. After adding '@blokkli/editor' to your modules array, every option you set under blokkli controls how the editor registers itself, identifies your block entities, and exposes shared configuration across your project.
Basic Setup
The blökkli Nuxt module requires Nuxt 3.x. It is not compatible with Nuxt 2 or the Nuxt Bridge layer.
Module Options
The entity type string that identifies your block items internally. blökkli uses this value when
constructing references to block entities and communicating with your adapter.Common values are
'block' (the default convention) or 'paragraph' when integrating with
CMS platforms that use paragraph-based content models. The string you provide here must match
what your adapter returns for block entity types.An object that defines reusable options shared across all block types in your project.
Each key is the option name you reference from individual blocks; each value is an option
definition object using the same shape as block-level options defined in Once defined here, any block can opt in to a global option by listing its key in the
defineBlokkli().globalOptions array inside defineBlokkli(). See the Global Options
page for full details on option types and usage patterns.
