配置web pack loader 报错:Module build failed: Error: The node API for `babel` has been moved to `babel-core`.


报错如下

Module build failed: Error: The node API for `babel` has been moved to `babel-core`.

在我配置loader 的时候出现如上问题

配置文件部分如下

{
		test: /\.js/,
	        loader: "babel",
}

 

解决方法:

改为 babel-loader

并安装babel-loader

{
		test: /\.js/,
	        loader: "babel-loader",
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM