Hi, I have an issue which I already spent some great amount of time on. Sentry is trying to fetch source code and source maps via http instead using the ones I uploaded. Release ID are a match. I have a next.js app, using SentryWebpackPlugin to upload source maps
process.env.NODE_ENV === 'production' &&
config.plugins.push(
new SentryWebpackPlugin({
include: ['.next'],
ignore: ['node_modules', '.next/cache'],
urlPrefix: 'opt/app/.next/',
release: options.buildId,
// validate: true,
})
)
I tried various prefixes (opt/app is the docker app directory). It works ok via http, but I deleted the maps in production (after uploading them), I don’t want them to be public. What do I do? Please, anyone.