我试图以几种不同的方式解决这个问题,所以我必须从头开始。
我有一个名为webpack.dev.js
的配置文件,如图所示:
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
module.exports = {
entry: "./src/script.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "dist")
},
devtool: "inline-source-map",
devServer: {
contentBase: path.join(__dirname, "dist")
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["env"]
}
}
},
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ["css-loader", "postcss-loader", "sass-loader"]
})
}
]
},
plugins: [
new HtmlWebpackPlugin({template: path.join("src", "index.html")}),
new ExtractTextPlugin("style.css"),
new CopyWebpackPlugin([{from: "src/images", to: "images"}])
]
};
因此,我在package.json中设置了一个启动脚本来启动dev服务器
"start": "webpack-dev-server --config webpack.dev.js"
现在是问题的开始。当我运行脚本时,我收到以下错误
Invalid configuration object. webpack-dev-server has been initialized using a configuration object that does not match the API schema.
- configuration has an unknown property 'error'. These properties are valid:
object { hot?, hotOnly?, lazy?, bonjour?, host?, allowedHosts?, filename?, publicPath?, port?, socket?, watchOptions?, headers?, clientLogLevel?, overlay?, progress?, key?, cert?, ca?, pfx?, pfxPassphrase?, requestCert?, inline?, disableHostCheck?, public?, https?, contentBase?, watchContentBase?, open?, useLocalIp?, openPage?, features?, compress?, proxy?, historyApiFallback?, staticOptions?, setup?, stats?, reporter?, noInfo?, quiet?, serverSideRender?, index?, log?, warn? }
正如您所看到的,此错误非常令人困惑,因为配置文件中没有任何error
属性
在尝试不同的方法解决此问题后,我尝试删除devServer
属性并使用默认设置启动开发服务器。
但是现在它变得奇怪了。输出看起来像Web服务器是否已启动两次:
Project is running at http://localhost:8080/
webpack output is served from /
Project is running at http://localhost:8081/
webpack output is served from /
之后,它会记录有关multiple modules with names that only differ in casing
然后经过一些谷歌搜索后,我发现其他人也遇到了这个unknown property 'error'
问题,而他遇到的原因是他在后台运行了http-server
。
现在,我的理论是,由于某种原因,webpack-dev-server并行运行两次,并且会产生竞争条件或错误,从而触发此unknown property 'error'
问题。
我只找到了另外两个有类似问题的人,他们只需将inject: false
添加到HtmlWebpackPlugin
的配置对象即可修复。这样做并没有使错误消失,并且在没有devServer配置的情况下运行它时,它只是从页面中删除了所有js和css,因为它没有将<link>
和<script>
标记注入到HTML
此时我不知道如何解决这个问题,这就是为什么我问是否有人可以帮助我。
答案 0 :(得分:2)
似乎与webpack-dev-server
版本2.8.0相关。
我通过降级到版本~2.7.0(2.7.1)解决了这个问题。
答案 1 :(得分:1)
在项目文件夹中,运行npm uninstall webpack-dev-server
。
我在使用webpack-dev-server
v2.9.1的新项目中遇到了同样的问题,同时运行了两台服务器。我意识到我已经安装了两次webpack-dev-server
个包,一个在我的项目文件夹node_modules
中,因为它在我的package.json
中被列为依赖项,另一个在全局安装,所以我只删除了本地文件夹。
我提交了一个问题: https://github.com/webpack/webpack-dev-server/issues/1125
答案 2 :(得分:0)
除了通过npm卸载devserver之外,我还必须执行以下操作才能使其正常工作。
黑魔法无可否认但是一旦完成它就变成了生命 - 花了2个小时对此非常感激OP指出开发服务器运行了两次。