Webpack不会在内部切换到Terser吗?我可以在没有terser-webpack-plugin的情况下配置terser吗?

时间:2019-05-19 13:27:32

标签: webpack config webpack-dev-server terser

如果webpack已在内部使用它,为什么我需要terser?

我需要一些非默认选项,例如最终捆绑包中的注释条,发现我可以做到这一点:

const TerserPlugin = require('terser-webpack-plugin');

module.exports = {
  entry: /*...*/
  output: /*...*/,
  module: /*...*/,
  optimization: {
    minimizer: [
      new TerserPlugin({
        terserOptions: {
          output: {
            comments: false,
          },
        },
      }),
    ],
  },
}

是否可以在不需要terser-webpack-plugin的情况下配置webpack?

0 个答案:

没有答案