Zum Inhalt springen

@studiocms/wysiwyg

Dieser Inhalt ist noch nicht in deiner Sprache verfügbar.

This plugin adds a WYSIWYG editor to your StudioCMS project with ease!

  1. Install the package using the following command:

    Terminal-Fenster
    npm run studiocms add @studiocms/wysiwyg
  2. Your StudioCMS config should now include @studiocms/wysiwyg:

    studiocms.config.mjs
    import { defineStudioCMSConfig } from 'studiocms/config';
    import wysiwyg from '@studiocms/wysiwyg';
    export default defineStudioCMSConfig({
    plugins: [
    wysiwyg(),
    ],
    });