我完全反应并且正在测试本教程http://jmfurlott.com/tutorial-setting-up-a-single-page-react-web-app-with-react-router-and-webpack/
当我尝试启动应用程序时,收到以下错误消息:
答案 0 :(得分:2)
该网站上的教程现已过时,因为Babel 6不再本身支持React。您需要包含一个插件并根据需要配置webpack。
https://babeljs.io/docs/plugins/preset-react/
安装插件:
$ npm install babel-preset-react
然后,您需要在webpack中配置您的加载程序以使用该插件。
此博客将向您展示如何将webpack与babel6一起使用: https://www.twilio.com/blog/2015/08/setting-up-react-for-es6-with-webpack-and-babel-2.html