我已经安装了网络包,一切正常。
当我运行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");