webpack.config之plugin


const config = {
  plugins: [
    new HtmlWebpackPlugin({template: './src/index.html'})
  ]
};

require引用插件
在config.plugins数组中new一个插件的实例来使用

你可能感兴趣的:(webpack.config之plugin)