How i can set max. size of image uploaded?

If found the solution:
$(this).summernote({
maximumImageFileSize: 524288 # 512KB
});
PS: to caluclate the number, you need to multiply 1024. Example:
1024 * 512KB = 524288
It just fails without any warning when an image larger that the specified is uploaded.
It just fails without any warning when an image larger that the specified is uploaded.
Then you better open a new issue thread. :)
Most helpful comment
If found the solution:
PS: to caluclate the number, you need to multiply
1024. Example: