webpack 编译时,提示 Unexpected token: keyword «const»

Posted IWay

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack 编译时,提示 Unexpected token: keyword «const»相关的知识,希望对你有一定的参考价值。

代码里如果用到const 关键字,编译报这种错误

 

 解决方法:

npm install terser-webpack-plugin --save

然后,webpack配置:
 const TerserPlugin = require(\'terser-webpack-plugin\');
 module.exports = {
  optimization: {
    minimize: true,
    minimizer: [new TerserPlugin()],
  },
};

 

 

以上是关于webpack 编译时,提示 Unexpected token: keyword «const»的主要内容,如果未能解决你的问题,请参考以下文章

.tsx webpack 编译失败:Unexpected token <

react组件引入css文件在启动的时候提示css: Unexpected token, expected ;

VB 编译的程序 编译后在部分机器上提示UNEXPECTED ERROR

Webpack 无法加载字体文件:Unexpected Token

Webpack - Babel - 解析 JSX: SyntaxError: Unexpected token

SyntaxError: Unexpected token 'const' (with Vue, Karma, Webpack, PhantomJS)