Module not found: Error: Can't resolve './App'
I had facing the same issue, after a long research, what I realized myself is that, u gotta include suffix of ur file, I fixed my issue just adding .tsx behind './App'
Instance: Code having error: import App from './App'; Compilation Fixed: import App from './App.tsx';
Try it out if this fix ur issue!