Open KatuGT opened 6 months ago
Hi, I faced the same issue. I use it in React v16
and ckeditor5 v42
. I tried to change the package in node_modules
directly by replacing the import and it works.
// Replace below
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
// With below
import { Plugin } from 'ckeditor5';
I assume CKEditor consider it duplicates since we use different package for importing the same thing.
Hello! first of all, thanks for this plugin, is just what I was looking
now let me explain myself
I used the " online builder" https://ckeditor.com/ckeditor-5/online-builder/ and of course I downloaded my CK Editor now iIf I try to follow the steps I get an error for duplicated modules
I am working with react/nextjs 14
how should I implement it in this case?
Thank you!