出于某种原因,我无法使用源图在chrome调试器中查看我的react-native项目文件。 Chrome立即退出:
Failed to parse SourceMap: http://localhost:8081/index.ios.map?platform=ios&dev=true&minify=false&hot=true
我不知道为什么会发生这种情况,因为我的团队成员能够将源图使用相同的本地反应项目。
我正在使用最新的Chrome:版本55.0.2883.95(64位)
不重要但是: react-native-cli:1.0.0
这不应该是原因,但这是我的.babelrc:
{
"passPerPreset": true,
"presets": [
{
"plugins": [
"transform-inline-environment-variables",
"./plugins/babelRelayPlugin"
]
},
"react-native"
]
}
可能是因为我们正在使用es6吗?
答案 0 :(得分:0)
在我的情况下,修复是删除node_module并再次安装!
rm -rf node_modules/ && npm install