ckeditor-upload-image
ckeditor-upload-image copied to clipboard
Upload Image In CKEditor 5 with API
Upload Image In CKEditor 5 With API
this React Project help you for how to upload image in CKEditor 5 with API URL and without use to any plugin
First Install Axios
npm i axios --save
Upload Request (POST)
{
image: binary // form data
}
Server Response
{
uploaded: true,
fileName: 'example',
url: 'https://example.com'
}