-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Super expression must either be null or a function, not undefined #39
Comments
me too |
Same. |
same |
Same issue here |
I had the same issue - it started working when I replaced that import line with the Readme's suggested method of importing one module at a time:
I have absolutely no idea why that made it work, but it might be worth a shot to anyone who stumbles across this issue. |
I have involved myself in this issue for several hours and tried different methods, but I did not get any results. |
I also encountered the same issue, but I resolved it with the following code. (TypeScript + Vue + Vite + VueQuill) In the
In the The above code worked for me, so perhaps you can give it a try. |
thanks bro, it's also worked for me |
I've tried to import like that: So I investigate and found another solution:
With this config, all was working. I Hope it can help others too. |
Yeah 💯 ! Thank you very much. It worked |
It does work, but you have to import |
I am also getting the same issue with the integration of htmlEditButton in reactQuill super expression must either be null or a function, not undefined I am working on a React project with a rich text editor using ReactQuill. Everything works fine in development mode (local), but after the build it is failing This error seems to be related to the inclusion of the htmlEditButton module. When I remove the htmlEditButton module, the build works fine.
|
Everything works fine on dev (npm run dev) but after build I have this error:
Super expression must either be null or a function, not undefined.
Without BlotFormatter module it also works fine.
It is laravel + vue + inertia + vite + VueQuill
The text was updated successfully, but these errors were encountered: