我怎样才能修复"无法编译"在npm进行反应应用开发?

时间:2018-06-14 22:06:11

标签: reactjs

这是我的第一个测试应用。但为什么不编译。 我无法弄明白。任何人都可以解释一下。

image of cmd

image of cmd1

index.html file

app.jsx file

main.js file

package.json file

webpack.config.js file

1 个答案:

答案 0 :(得分:1)

您的index.html文件正在引用" index.js",但是从您提供的屏幕截图看起来好像您没有这个,但是您有#34; main的.js"

因此改变" index.html"参考" main.js"即。

<script src='main.js'></script>

在main.js中也有一个拼写错误,更改&#34; ducument&#34;到&#34;文件&#34;。