Add A WYSIWYG Editor to your StudioCMS project with ease!
npm install @studiocms/wysiwyg
Add a WYSIWYG editor to your StudioCMS dashboard.
Add this plugin to your StudioCMS config (studiocms.config.mjs or .mts):
``ts
import wysiwyg from '@studiocms/wysiwyg';
export default defineStudioCMSConfig({
// other options here
plugins: [wysiwyg()]
});
``