Andrey Gonchar
Andrey Gonchar

Reputation: 5

Insert image to CKEditor

I trying to use CKEditor5 and CKEditor-react in my electron app. And i want to paste image in editor, but i have an error

filerepository-no-upload-adapter: Upload adapter is not defined.

Docs says that I mast using cloud. But my app must working locally and without internet Can someone help me?

Upvotes: 0

Views: 5315

Answers (1)

Reinmar
Reinmar

Reputation: 22023

The docs say, in short, this:

To handle image upload in CKEditor 5 you can use one of these:

  • use the built-in Easy Image adapter (cloud service),
  • use the built-in CKFinder adapter (can work locally if you want),
  • write your own adapter (in which case, please refer to the UploadAdapter interface documentation).

The last option gives you a complete freedom on how and where you want to send those files.

PS. You can find a bit more details in this question: How to enable image upload support in CKEditor 5?

Upvotes: 1

Related Questions