Add HTML Support to your StudioCMS project with ease!
npm install @studiocms/html
Add HTML support to StudioCMS
Add this plugin in your StudioCMS config. (studiocms.config.mjs)
``ts
import { defineStudioCMSConfig } from 'studiocms/config';
import htmlPlugin from '@studiocms/html';
export default defineStudioCMSConfig({
// other options here
plugins: [htmlPlugin()]
});
``