'Error while using Ckeditor - CKEditorError: plugincollection-required
Solution 1:[1]
Did you follow the installation guide for angular?https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/frameworks/angular.html
npm install --save @ckeditor/ckeditor5-angular
npm install --save @ckeditor/ckeditor5-build-classic
In your appModule.ts you need to import it
import { CKEditorModule } from '@ckeditor/ckeditor5-angular';
@NgModule( { imports: [ CKEditorModule, // ... ], // ... } )
Solution 2:[2]
as CKEditor5 office documents said: https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/error-codes.html#error-plugincollection-required
Did you have moved 'ImageUpload' by config removePlugins: ['ImageUpload']
I have reappear your issue by upper case.
Solution 3:[3]
just write this it will resolve the issue
removePlugins: ['imageUpload', 'mediaEmbed'],
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Awabil George |
| Solution 2 | wnow20 |
| Solution 3 | Aakash Kumar Singh |

