ERROR in Cannot find module 'babel-core'. using react.js, webpack, and express server

前端 未结 5 1246
时光取名叫无心
时光取名叫无心 2020-12-22 22:37

Whenever I run webpack in the terminal I get:

Hash: efea76b1048c3a97b963
Version: webpack 1.12.13
Time: 33ms
    + 1 hidden modules

ERROR in Ca         


        
5条回答
  •  旧巷少年郎
    2020-12-22 23:06

    For those wanting to use babel-loader 8+: it requires Babel 7.x,, which is to be installed as the '@babel/core' package instead of 'babel-core'. In other words, run:

    npm install --save-dev @babel/core
    

提交回复
热议问题