You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Quill from quill npm package like import Quill from 'quill', imports quill.js from node_modules/quill/quill.js .
It leads that all quill modules are included in bundle - all blots, formats, modules, themes...
So we decided to create custom Quill bundle.
For this I created in my project quill.core.js file and import only needed modules:
Everything works perfect and as expected. EXCEPT QUILL-BETTER-TABLE!
I think it's because when I do import QuillBetterTable from "quill-better-table"; internally QuillBetterTable uses Quill from quill package like import Quill from 'node_modules/quill' instead my custom quill that created. Or maybe I am missing something. Could you please help me to understand how to correctly use quill better table in such case?
The text was updated successfully, but these errors were encountered:
Quill version: 2.0.0-dev.4
Using Quill from quill npm package like
import Quill from 'quill'
, imports quill.js fromnode_modules/quill/quill.js
.It leads that all quill modules are included in bundle - all blots, formats, modules, themes...
So we decided to create custom Quill bundle.
For this I created in my project
quill.core.js
file and import only needed modules:Then, using custom quill core, I register custom formats and modules in file
quill.js
:Everything works perfect and as expected. EXCEPT
QUILL-BETTER-TABLE
!I think it's because when I do
import QuillBetterTable from "quill-better-table";
internally QuillBetterTable uses Quill from quill package likeimport Quill from 'node_modules/quill'
instead my custom quill that created. Or maybe I am missing something. Could you please help me to understand how to correctly use quill better table in such case?The text was updated successfully, but these errors were encountered: