当我使用webpack-dev-server
使用webpack构建我的js包时,我的代码每次运行两次。不知道如何解决它。
Screenshot of Developer Tools console
我的webpack配置:
var path = require('path');
var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
devtool: 'cheap-eval-sourcemap',
entry: [
'webpack-dev-server/client?http://localhost:8080',
'webpack/hot/dev-server',
path.join(__dirname, '../src/main')
],
output: {
path: path.join(__dirname, '../dist'),
filename: 'bundle.js'
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new HtmlWebpackPlugin({
template: path.join(__dirname, '../src/index.html')
}),
new CopyWebpackPlugin([
{
from: path.join(__dirname, '../assets'),
to: path.join(__dirname, '../dist/assets')
}
])
],
devServer: {
contentBase: path.join(__dirname, '../dist'),
outputPath: '/lol',
hot: true
},
module: {
loaders: [
{
test: /\.js$/,
loaders: ['babel-loader'],
include: path.join(__dirname, '../src')
}
]
}
};
答案 0 :(得分:42)
在模板文件中,您可能已手动添加了加载包。
如果你没有
inject: false
中的选项
new HtmlWebpackPlugin({
template: path.join(__dirname, '../src/index.html')
}),
捆绑包将再次添加。
答案 1 :(得分:2)
扩展@ Emil Perhinschi和@ ggloren的早期回复...
或者,如果您的../src/index.html
文件不依赖<script src="bundle.js"></script>
以外的任何脚本,只需从index.html中删除后者即可。
每https://github.com/jantimon/html-webpack-plugin,inject
的默认值为true
和...
传递
true
或'body'
时,所有JavaScript资源将 放在body元素的底部。
因此,您的bundle.js的两个实例是:
<script src="bundle.js"></script>
,和