Dollie Editor SDK guide
Component Does Not Render
Fix unknown or missing section components.
Check the final id
The stored id includes the source prefix:
prefix "app-" + local id "hero" = "app-hero"
Inspect the installed inventory:
npx dollie-editor info --json
Check both contracts
The runtime needs:
- a component in the composed
catalog; - a matching
BuilderSectionDefinitioninsections.
The final ids must match exactly.
Check catalog creation
Duplicate source ids, prefixes, or final component ids are rejected during createCatalog. Fix the collision instead of changing stored pages ad hoc.
Check the component itself
Render the React component outside Dollie Editor with representative props. If it fails there, the problem is in the component or its host dependencies rather than the page definition.