UNPKG

strapi-plugin-jodit-editor

Version:

A powerful rich text editor plugin for Strapi v5 using the Jodit Editor with advanced formatting capabilities and seamless integration with Strapi's media library.

20 lines (16 loc) 527 B
import type { Core } from '@strapi/strapi'; const register = ({ strapi }: { strapi: Core.Strapi }) => { // Register the Jodit custom field on the server side strapi.customFields.register({ name: 'jodit', plugin: 'jodit-editor', type: 'richtext', inputSize: { default: 12, isResizable: true, }, }); console.log('🎯 Jodit Editor plugin - SERVER REGISTER function called!'); console.log('🎯 Jodit custom field registered on server side successfully!'); }; export default register;