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

2021-03-04 11:26

阅读:700

标签:web   erp   color   nbsp   class   token   ini   font   关键字   

代码里如果用到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»

标签:web   erp   color   nbsp   class   token   ini   font   关键字   

原文地址:https://www.cnblogs.com/IWings/p/13265976.html


评论


亲,登录后才可以留言!