Quill.js 2.0.0 image-resize plugin availability
01:17 21 Feb 2024

I just wanted to know if someone has already updated quill to it's latest 2.0.0rc version and is using the plugin image-resize for it.

Before it was simply initialisable by using it like that:

var quill = new Quill('#editor', {
    modules: {
        imageResize: {
          displaySize: true
        },
        toolbar: [
          [{ header: [1, 2, 3, false] }],
          ['bold', 'italic', 'underline'],
          ['image','link', 'video']
        ]
    },
    placeholder: 'Write something...',
    readOnly: false,
    theme: 'snow'
  });

With 2.0.0rc it says, it is not able to import it. Any suggestions?

javascript quill