忽略/阻止wepack

时间:2017-06-19 00:17:40

标签: webpack-2

有没有办法防止特定文件被发送到Webpack(2)中的输出?

我正在使用html-webpack-plugin,在为后端CMS构建时,我想避免发出html文件,但仍然会发出其元图像依赖项。

1 个答案:

答案 0 :(得分:1)

这可能会有所帮助:ignore-emit-webpack-plugin

它允许您按模式忽略发出的文件

// webpack config
const IgnoreEmitPlugin = require('ignore-emit-webpack-plugin');

module.exports = {
  // ... 
  plugins: [ new IgnoreEmitPlugin(/unwanted-file\.html$/) ]
  // ... 
};

披露 - 我是作者