Error: [BABEL] D:\fish_projects\myapp\src\components\index.tsx: @babel/helper-compilation-targets: 'opera_mobile' is not a valid target - Did you mean 'opera'? (While processing: "D:\\fish_projects\\myapp\\node_modules\\@umijs\\babel-preset-umi\\app.js$0$0$39")
时间: 2023-07-23 19:14:20 浏览: 292
Error:in ./node-modules/axios/lib/platform/index.js
这个错误是由Babel引起的,它提示`opera_mobile`不是一个有效的目标。它可能是由于你的Babel配置中使用了`opera_mobile`作为目标之一,但Babel并不支持这个目标。
你可以尝试将`opera_mobile`改为`opera`,因为可能是输入错误导致的。如果问题仍然存在,你可以检查你的Babel配置文件(通常是`.babelrc`或`babel.config.js`)中的目标配置,确保只使用Babel支持的目标。你也可以尝试更新Babel相关的依赖包,以获取最新版本的目标支持。
如果以上方法都无法解决问题,你可能需要检查你的项目依赖项和构建配置,看看是否有其他的插件或工具在影响Babel的行为。
阅读全文