I am looking to integrate Quill into my Laravel project.
When I include Quill from a CDN, my code works fine.
But when I import it from the node_modules folder, I encounter this error:
Quill is not defined
Any suggestions on how to resolve this issue?
Here's a snippet of my code:
import 'quill/quill';
var quill = new Quill('#editor', {
theme: 'snow',
});