Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
186 views
in Technique[技术] by (71.8m points)

reactjs - Unable to resolve "../../App" from "node_modulesexpoAppEntry.js"

When I try running my expo (version 4.0.16) app on a mobile device, I get Unable to resolve "../../App" from "node_modulesexpoAppEntry.js"

I tried: https://github.com/GeekyAnts/vue-native-core/issues/117, and Unable to resolve "../../App" from "node_modules/expo/AppEntry.js".

However the github one did not work.("packagerOpts": { "sourceExts": [ "js", "json", "ts", "tsx", "jsx", "vue"], "config": "metro.config.js"} didn't do anything) My main file is called app.js.

I tried following the stackoverflow post

I ran into this problem too. I used the expo cli to make the project which sets up your app.json file 
with "entryPoint": "node_modules/expo/AppEntry.js". AppEntry.js tries to default import from a js file 
called App in the root directory. Make sure you have a file called App.js|.tsx that default exports a 
react component.

and now my app.js looks like

class App extends React.Component  {
//stuff
}
export default App;

but that also didn't change anything, and I don't know if I understood what I was supposed to do exactly. Anyways, if anyone has any ideas, please let me know.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...