vite创建的vue3项目里报错webuploader.fis.js:4920 Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them,
如何才能关闭严格模式,试了使用babel,配置如下:
{
"presets": [
"@babel/env"
],
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-transform-remove-strict-mode"
]
}
始终是不能解决。