我的所有代码在由Webpack编译时运行两次

时间:2016-05-06 21:16:48

标签: javascript webpack

当我使用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')
      }
    ]
  }
};

2 个答案:

答案 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-plugininject的默认值为true和...

传递true'body'时,所有JavaScript资源将 放在body元素的底部。

因此,您的bundle.js的两个实例是:

  1. 您(大概)编码的<script src="bundle.js"></script>,和
  2. HtmlWebpackPlugin的注入“在body元素的底部”。