콘텐츠로 이동

@studiocms/wysiwyg

이 콘텐츠는 아직 번역되지 않았습니다.

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

  1. Install the package using the following command:

    터미널 창
    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(),
    ],
    });