How to add sourcemap in React Native for Production?
I received error log like the following while the app crashed:
I received error log like the following while the app crashed:
My react folder structure is as below
I’m wondering how to generate source maps in create-react-app? are they done implicitly? and do they live in the build folder
Before I decided to post this issue, I did quite a few things as a background check.
So, my problem is:
I want to debug a node app that runs from babel
compiled ES6 files. I have my ES6 source in an src
folder and the babel ES5 equivalent in a build
folder.
I decided to try out WebPack on a new project I’m spinning up today and I’m getting really strange behavior from the sourcemaps. I can’t find anything about it in the documentation, nor can I find anyone else having this issue when skimming StackOverflow.