Error: [BABEL] E:\临时项目\react\myapp\myapp2\src\components\index.tsx: @babel/helper-compilation-targets: 'opera_mobile' is not a valid target
时间: 2023-08-21 18:08:21 浏览: 209
详解webpack2+node+react+babel实现热加载(hmr)
根据提供的引用内容和错误信息,可以看出这个错误是由于在Babel的配置文件中使用了无效的目标"opera_mobile"引起的。为了解决这个问题,你可以按照以下步骤进行操作:
首先,你需要找到并打开.babelrc文件,然后删除其中的"opera_mobile"目标。在文件中,你可以找到类似以下内容的代码:
```
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
}
```
在这段代码中,删除"opera_mobile"目标即可。删除后的代码应该如下所示:
```
"babel": {
"presets": [
"react-app"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
}
```
保存并关闭文件后,重新运行你的代码,应该就不会再出现这个错误了。引用 [3
阅读全文