1. 程式人生 > >禁用webpack打包嚴格模式

禁用webpack打包嚴格模式

key 文件 call ebp all string not mode func

Uncaught TypeError: ‘caller‘, ‘callee‘, and ‘arguments‘ properties may not be accessed on strict mode functions or the arguments objects for calls to them

此時 禁用webpack打包嚴格模式 即可

第一步:安裝插件

cnpm install babel-plugin-transform-remove-strict-mode

第二步:在.babelrc配置文件plugins中加入"transform-remove-strict-mode"

{ "plugins": ["transform-remove-strict-mode"] }

禁用webpack打包嚴格模式