背景:
使用 webpack 打包多页面应用,使用 webpack-merge 合并配置文件。编写的 js 文件使用了 ES6 语法。
报错信息:
ERROR in ./static/controller/index.js from UglifyJs
Unexpected token: name (react) [./static/controller/index.js:183,4]
解决思路:
1、js 文件的压缩插件 uglifyjs-webpack-plugin 不支持 ES6 语法,需要先使用 babel-loader 转换
2、在配置文件中,devtool 配置项没有添加。这点比较坑啊~~