Last updated 1 year ago
By default, AdminJS is equipped with a editor, which makes it a perfect tool for a Content Management System
To add TipTap to the AdminJS setup you need to change the type of the property holding your content to the richtext.
richtext
const admin = new AdminJS({ resources: [ { resource: Posts, options: { properties: { postContent: { type: 'richtext', } } } } ] })