无法在根React Webpack

时间:2017-10-31 19:30:44

标签: javascript reactjs webpack

我已经安装了网络包,一切正常。

当我运行webpack-dev-server --progress --color --watch

它正确运行,但在访问端口localhost:8080时,它显示{。{1}},它是./src/bundle.js的输出。

但是当我打开Hello Webpack时,它会输出我想要的内容,即localhost:8080/bundle输出。

我的index.html

entry.js

我的entry.js

    <html>
  <head>
    <title>My first React</title>
  </head>
  <body>
    <div id="root-app"></div>
    <script src="./src/bundle.js" type="text/javascript"></script>
  </body>
</html>

在访问我的端口8080时,在root上正确输出“entry.js”而不是“./src/bundle.js”我有什么错误。

编辑:我的webpack.config.js

import "./style.css";

var React = require('react');
var ReactDOM = require('react-dom');

document.write ("I'm working fine");

0 个答案:

没有答案