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-07-31 11:08:49 浏览: 491
这个报错是由于Ant Design Pro项目中的一个组件文件(index.tsx)中使用了一个无效的Babel编译目标(opera_mobile)。根据信息,它建议你将其更为有效的目标(可能是'opera')。
你可以尝试在项目的.browserslistrc文件中修改或添加相关配置来解决这个问题。该文件用于指定支持的浏览器版本。例如,你可以尝试将"opera_mobile"修改为"opera",然后重新运行项目看看是否能够解决问题。
如果问题仍然存在,请确保你的项目依赖项和配置文件都是最新的,并且与Ant Design Pro文档中的要求一致。如果问题仍然无法解决,你可以尝试在Ant Design Pro的GitHub存储库上搜索类似的问题,或者提出一个新的问题以获得更多帮助。
相关问题
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
这个报错是由于在 Ant Design Pro 的代码中使用了一个无效的编译目标。具体来说,'opera_mobile' 不是一个有效的目标。
要解决这个问题,你可以检查你的代码中是否有设置了错误的编译目标。通常,编译目标应该是一组支持的浏览器和环境,例如 'last 2 versions' 或 'ie >= 11'。你可以在项目的配置文件中找到这些设置,通常是 `.babelrc` 或 `babel.config.js` 文件。
请确保你的编译目标设置正确,不包含无效的值。你可以参考 Babel 的官方文档了解更多关于编译目标的信息。
如果你仍然遇到问题,请提供更多的代码细节或错误信息,以便我能够更好地帮助你解决问题。
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") 怎么解决
这个报错是由于Ant Design Pro项目中的一个组件文件(index.tsx)中使用了一个无效的Babel编译目标(opera_mobile)。根据报错信息,它建议你将其更正为有效的目标(可能是'opera')。
解决这个问题的方法是修改项目中的.browserslistrc文件,该文件用于指定支持的浏览器版本。你可以尝试将"opera_mobile"修改为"opera",然后重新运行项目看看是否能够解决问题。
另外,确保你的项目依赖项和配置文件都是最新的,并且与Ant Design Pro文档中的要求一致。如果问题仍然存在,你可以尝试在Ant Design Pro的GitHub存储库上搜索类似的问题,或者提出一个新的问题以获得更多帮助。
阅读全文