quill Overwriting modules/imageResize with
See original GitHub issueHi all,
i am getting this warning message with my nuxt implementation:
quill Overwriting modules/imageResize with ƒ t(e){var n=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};o(this,t),this.initializeModules=function(){n.removeModules(),n.modules=n.moduleClasses.map(function(t){return new(l[t]||t)…
nuxt.config.js
build: {
plugins: [
new webpack.ProvidePlugin({
'window.Quill': 'quill/dist/quill.js',
'Quill': 'quill/dist/quill.js'
})
],
}
import Quill from 'quill'
import VueQuillEditor from 'vue-quill-editor'
import ImageResize from 'quill-image-resize-module'
Quill.register('modules/imageResize', ImageResize)
import {ImageDrop} from 'quill-image-drop-module'
Quill.register('modules/imageDrop', ImageDrop)
How to get rid of it?
KR
Issue Analytics
- State:
- Created 2 years ago
- Comments:5
Top Results From Across the Web
ngx-quill and Quill resize module breaking Jasmine tests
I stumbled across a fix after reading this github post. Instead of importing Quill I imported QuillNameSpace and defined Quill as ...
Read more >quill-image-resize-module - npm
A module for Quill rich text editor to allow images to be resized.. Latest version: 3.0.0, last published: 6 years ago.
Read more >quill-image-resize-module - npm package - Snyk
A module for Quill rich text editor to allow images to be resized. For more information about how to use this package see...
Read more >quill-image-resize-module - Bountysource
A module for Quill rich text editor to allow images to be resized. Become a Bounty Hunter
Read more >How to Customize Quill - Quill Rich Text Editor
Quill is designed with a modular architecture composed of a small editing core, surrounded by modules that augment its functionality. Some of this...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Comment Out The Following:
And
seems to work now…thanks alot!