我有以下webpack配置文件:
UIMoreNavigationController
npm开始部分是:
var config = {
entry: './main.js',
output: {
filename:'bundle.js',
},
devServer: {
inline: true,
port:8080
},
module : {
loaders :[
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
presets: ['es2015','react']
}
}
]
}
}
module.exports = config;
在我的电脑上,热重载工作完全正常。但是,使用相同的配置,它不适用于同事的计算机。我们俩都在使用ubuntu 16.04。我们都有相同的npm和nodejs配置。
编辑:
webpack-devserver启动了,但是如果是我同事的电脑,它就不会重新加载。
版本:
"scripts": {
"start": "webpack-dev-server --hot"
},