2fps / recorder

html5 js 浏览器 web端录音

Home Page:https://recorder.zhuyuntao.cn/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

可添加打包代码以保证ie浏览器不报错

Q-Peppa opened this issue · comments

commented
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
//////
    optimization: {
        minimizer: [
            new UglifyJsPlugin({
                exclude: /node_modules/,
                uglifyOptions: {
                    ie8: true // 解决ie下的关键字default的问题
                }
            })
        ]
    },