这两天再回顾配置webpack,当使用到webpack配置babel时候报错了。没有找到babel/core

webpack使用babel报错:Error: Cannot find module '@babel/core'


查看了一下文档,才发现,是因为版本问题

默认babel-loader | babel对应的版本需要一致。所以回退到@7版本就可以。、

 

npm install -D babel-loader@7 babel-core babel-preset-env

 

这样就解决啦。

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-11
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
  • 2021-12-08
  • 2021-07-22
  • 2022-12-23
相关资源
相似解决方案