You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remix should allow express to use the .map file generated to find the original source file.
It is extremely important to any application developer to find the source of errors.
Without a stack trace we are left in the dark.
Actual Behavior
The application shows an error in a built file. If you are running a docker container, that build file is not easily accessible and hard to trace back to the original source code.
The text was updated successfully, but these errors were encountered:
Hmm.. I see the same thing with the meta function, but errors in loader show the stack trace just fine. I wonder if it's because meta is included in both the server and client bundles.
What version of Remix are you using?
1.17.1
Are all your remix dependencies & dev-dependencies using the same version?
Steps to Reproduce
I created an example app here: https://stackblitz.com/edit/remix-run-remix-kyq5df?file=app%2Froutes%2F_index.tsx
Note how the _index file calls
null()
just to raise an exception.The stack trace shows only
at Object.meta (/home/projects/remix-run-remix-kyq5df/build/index.js:168:16)
.Expected Behavior
Remix should allow express to use the
.map
file generated to find the original source file.It is extremely important to any application developer to find the source of errors.
Without a stack trace we are left in the dark.
Actual Behavior
The application shows an error in a built file. If you are running a docker container, that build file is not easily accessible and hard to trace back to the original source code.
The text was updated successfully, but these errors were encountered: