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
I am applying TypeScript to the project.
When the webpack build is successful, the app.js and app.js.map files are created.
(Using devtool: 'source-map' in webpack options)
All uploads are also done successfully.
However, if an error occurs within the project, the log is based on the ts file.
Therefore, it is displayed as /Main.tsx in Main at line 66:9 in the Sentry issue screen.
The ts file is uploaded to the Sentry server, but
The ts.map file is not created, so it cannot be found.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Environment
"@sentry/webpack-plugin": "^1.20.0"Steps to Reproduce
I am applying TypeScript to the project.
When the webpack build is successful, the app.js and app.js.map files are created.
(Using devtool: 'source-map' in webpack options)
All uploads are also done successfully.
However, if an error occurs within the project, the log is based on the ts file.
Therefore, it is displayed as /Main.tsx in Main at line 66:9 in the Sentry issue screen.
The ts file is uploaded to the Sentry server, but
The ts.map file is not created, so it cannot be found.
This is sentry-webpack plugin
project index
Is there any way to solve this problem?
All reactions