Module not found: Error: Can't Resolve 'quill'
See original GitHub issueI’m trying to add ngx-quill to AngularFire2 (that uses Angular 6 and Firebase) I’ve installed via “npm install ngx-quill”, that automatically adds himself to package.json and manually added ngx-quill to app.modules, as the installation guides says.
BUT ‘ng serve’ returns me the follow error:
ERROR in ./node_modules/ngx-quill/fesm5/ngx-quill.js Module not found: Error: Can't resolve 'quill' in './node_modules/ngx-quill/fesm5'
Issue Analytics
- State:
- Created 5 years ago
- Reactions:3
- Comments:7 (2 by maintainers)
Top Results From Across the Web
"Module not found: Error: Can't resolve" when installing from ...
I was getting this error in my Angular 7 application after I installed ngx-quill ( npm install ngx-quill ) and when I run...
Read more >Module not found: Error: Can't resolve 'quill' - Envato Forums
Hi,. Thanks for asking your question at Envato Forum. If your are a customer then contact with your item author. How to contact...
Read more >react-quill - npm
The Quill rich-text editor as a React component. ... It can't prevent the change, but will still override the content whenever value differs ......
Read more >Adding Quill to Your Build Pipeline
js, is to import and register necessary dependencies. You will likely want a similar entry point in your application that includes only the...
Read more >ngx-quill - npm Package Health Analysis - Snyk
Security Policy: No. We found a way for you to contribute to the project! Looks like ngx-quill is missing a security policy.
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 Free
Top 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
You need to Install peer dependency by your self. For NPM use this
npm install quill@1.3.6
Yes, I had to install
quill
as a peer dependency but for me, the documentation doesn’t make sense…