Ant Design Pro 报错ERROR in ./src/components/index.md Module build failed (from ./node_modules/@umijs/preset-dumi/lib/loader/index.js): Error: [BABEL] D:\xpa\星球项目\myapp\src\components\index.tsx: @babel/helper-compilation-targets: 'opera_mobile' is not a valid target Did you mean 'opera'? (While processing: "D:\xpa\星球项目\myapp\node_modules\@umijs\babel-preset-umi\app.js$0$0$39") 怎么解决
时间: 2023-08-13 19:05:43 浏览: 186
若依 cms 博客下载下来的前端代码,启动报错 node版本16.17.0. npm 8.15.0?
这个报错是由于Ant Design Pro项目中的一个组件文件(index.tsx)中使用了一个无效的Babel编译目标(opera_mobile)。根据报错信息,它建议你将其更正为有效的目标(可能是'opera')。
解决这个问题的方法是修改项目中的.browserslistrc文件,该文件用于指定支持的浏览器版本。你可以尝试将"opera_mobile"修改为"opera",然后重新运行项目看看是否能够解决问题。
另外,确保你的项目依赖项和配置文件都是最新的,并且与Ant Design Pro文档中的要求一致。如果问题仍然存在,你可以尝试在Ant Design Pro的GitHub存储库上搜索类似的问题,或者提出一个新的问题以获得更多帮助。
阅读全文