Joe Krump
Joe Krump
So I was able to apply a fix locally that worked for this case as a proof of concept. https://github.com/ElMassimo/vite_ruby/blob/4ee5aa893058bbe9262109b2b4c200d9a1656ac8/vite-plugin-ruby/src/index.ts#L90-L100 Changed to: ```js function outputOptions (assetsDir, ssrBuild) { const outputFileName...
The solution that worked for me was: ```js import ImageResize from 'quill-image-resize-module'; //... // Note the module is registered as `imageResize` not `ImageResize` Quill.register('modules/imageResize', ImageResize); // ... const quill =...