Hi, all
I’m trying to use sentry to monitor our web service. I used sentry-webpack-plugin to manage release and source maps.
here is my webpack config
new SentryCliPlugin(
{
include: ‘./build’,
ignore: [‘node_modules’, ‘webpack.babel.js’],
release: ${packageName}@${packageVersion}
,
urlPrefix: ‘~/irobot2’
}
),
And here is the uploaded artifacts on sentry, and the related issue that I triggered from FE page
There was 1 error message shows that remote file took too long to load. It might be caused by our test server is hosted inside our company network. But as I uploaded the artifacts. I expect Sentry will fetch sourcemap file from sentry server rather than remote server right?
Is there anything that I misunderstand from the docs? or someone is facing the same problem as well?