Webpack issue
See original GitHub issueIssue Description
Hi, I have an issue trying to run this in my project.
Module not found: Error: Can't resolve 'core-js/stable' in '/.../node_modules/quilljs-markdown/src'
Seems like there is some conflict in note modules. This is weird because I would expect each dependency to manage its own versions.
Any idea how could I solve this?
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Issues · webpack/webpack - GitHub
A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application...
Read more >How I solved and debugged my Webpack issue through trial ...
When webpack bundles your source code, it can become difficult to track down errors and warnings to their original location.
Read more >Webpack 5 Issues | Documentation - Web3Auth
While setting up a new web3 project from scratch, you might face multiple issues with webpack 5. This issue is caused due to...
Read more >node.js - Webpack issue when update 4.x to 5.x - Stack Overflow
I have a problem when i updated in my project the webpack package to V5.x. Here is the error : webpack-hot-client: entry Object...
Read more >The Problem with Webpack and Why It Is (Kind of) Our Fault
TLDR: Libraries should let innovation come either from within the core or from plugins/middleware out in the wild. Trying both approaches in ...
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
We couldn’t make it work, but the problem is most likely as you suggested with the babel version 6.x which requires core-js2 and it seems to be incompatible to use corejs2 and corejs3 in one project.
We managed to make it work though by using complied version of this plugin Thanks for your help
thank you a lot!