当前位置:   article > 正文

#记一次打包报错_js/app.36e21884.js from terser

js/app.36e21884.js from terser

报错内容如下

js/app.6ff5e7c3.js from Terser
Unexpected token: keyword «const» [js/app.6ff5e7c3.js:1,4460]

error  

js/chunk-2c925c54.8731960b.js from Terser
Unexpected token: punc «(» [js/chunk-2c925c54.8731960b.js:1,1959]

error  

js/chunk-3a55163c.6c8c81ab.js from Terser
Unexpected token: operator «>» [js/chunk-3a55163c.6c8c81ab.js:1,5448]

error  

js/chunk-56fb77e9.eb13d476.js from Terser
Unexpected token: punc «(» [js/chunk-56fb77e9.eb13d476.js:1,1690]
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

在这里插入图片描述

解决方法

TerserPlugin的配置参入改成如下

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

module.exports = {
  /**
   * Webpack 配置
   */
  configureWebpack: () => ({
    plugins: [],
    optimization: {
      minimizer: [
        new TerserPlugin({
          terserOptions: {
            ecma: undefined,
            parse: {},
            compress: {
              drop_console: true, // 传true就是⼲掉所有的console.*这些函数的调⽤.
              drop_debugger: true, // ⼲掉那些debugger;
              pure_funcs: ['console.log'] // 如果你要⼲掉特定的函数⽐如console.info ,⼜想删掉后保留其参数中的副作⽤,那⽤pure_funcs来处理
            },
            mangle: true, // Note `mangle.properties` is `false` by default.
            module: false,
            // Deprecated
            output: null,
            format: null,
            toplevel: false,
            nameCache: null,
            ie8: false,
            keep_classnames: undefined,
            keep_fnames: false,
            safari10: false
          }
        })
      ]
    }
  }),
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

原先报错的写法

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

module.exports = {
  /**
   * Webpack 配置
   */
  configureWebpack: () => ({
    plugins: [],
    optimization: {
      minimizer: [
        new TerserPlugin({
          minify: (file, sourceMap) => {
            const uglifyJsOptions = {
              compress: {
                drop_console: true,
                drop_debugger: true
              }
            }
            if (sourceMap) {
              uglifyJsOptions.sourceMap = {
                content: sourceMap
              }
            }
            return require('uglify-js').minify(file, uglifyJsOptions)
          }
        })
      ]
    }
  }),
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

其他说明:

我的webpack是版本5(cmd执行webpack -v)
webpack: 5.72.1
terser-webpack-plugin官网:https://webpack.docschina.org/plugins/terser-webpack-plugin/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/338697
推荐阅读
相关标签
  

闽ICP备14008679号