我在我的js应用程序上面临困难,在一个捆绑我的应用程序的Webpack(使用其dev服务器)中打包运行:当我修改并保存作为我的应用程序一部分的js文件模块时,有时Webpack执行立即(如预期的那样)重新绑定,有时甚至没有。在这种情况下,我必须停止开发服务器并再次运行它以执行捆绑操作。
Windows版本:7 SP1
Webpack版本:1.13.2(最新)
我的webpack.config:
module.exports = {
entry: './main.js',
output: {
path: './',
filename: '_index.js'
},
devServer: {
inline: true,
port: 3333
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: [
'es2015',
'react',
]
}
}
]
}
}
非常感谢您的帮助