webpack不包括bundle中的文件

时间:2016-04-12 20:03:21

标签: webpack pdf.js

Webpack不包含依赖项的依赖项。 使用require('entry?name-of-dep')需要此叶依赖项。

webpack.config.js

module: {
    loaders: [
      {
        test: /\.html$/,
        loader: 'raw-loader'
      },
      {
        exclude: [/\.html$/, /(node_modules|bower_components)/],
        loader: 'babel-loader',
        query: {
          presets: 'es2015',
        }
      }
    ]
  }

在输出包中,缺少的依赖项为:

/* 38 */
/***/ function(module, exports) {

    /* (ignored) */

/***/ }

我错过了什么?

1 个答案:

答案 0 :(得分:0)