We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import Quill from 'quill'; import 'quill/dist/quill.snow.css'; import 'quill/dist/quill.bubble.css'; import ImageUploader from "quill-image-uploader"; import 'quill-image-uploader/dist/quill.imageUploader.min.css'; Quill.register("modules/imageUploader", ImageUploader); import MagicUrl from 'quill-magic-url' Quill.register('modules/magicUrl', MagicUrl) import { ImageResize } from 'quill-image-resize-module/image-resize.min'; Quill.register('modules/imageResize', ImageResize); import {Mention, MentionBlot} from "quill-mention"; Quill.register({ "blots/mention": MentionBlot, "modules/mention": Mention }); // import * as Emoji from "quill-emoji"; // Quill.register("modules/emoji", Emoji); // import "quill-emoji/dist/quill-emoji.css"; import * as QuillTableUI from 'quill-table-ui' import { ImageDrop } from 'quill-image-drop-module'; Quill.register('modules/imageDrop', ImageDrop);
give me
image-resize.min.js:1 Uncaught TypeError: Cannot read properties of undefined (reading 'imports') at webpack_require (bootstrap:19:1) at ../../vendor/itbcode/itbcodepack/editor-quill/src/controller/quill-controller.js (meatask.js:1003:81)
if i comment
import { ImageResize } from 'quill-image-resize-module/image-resize.min'; Quill.register('modules/imageResize', ImageResize);
works fine
The text was updated successfully, but these errors were encountered:
No branches or pull requests
give me
image-resize.min.js:1
Uncaught TypeError: Cannot read properties of undefined (reading 'imports')
at webpack_require (bootstrap:19:1)
at ../../vendor/itbcode/itbcodepack/editor-quill/src/controller/quill-controller.js (meatask.js:1003:81)
if i comment
import { ImageResize } from 'quill-image-resize-module/image-resize.min';
Quill.register('modules/imageResize', ImageResize);
works fine
The text was updated successfully, but these errors were encountered: