I get the following errors when I receive Issues:
Source code was not found
Url file:///D:/Dev/lab/dist/js/app.js
Source code was not found
Url file:///D:/Dev/lab/dist/js/chunk-vendors.js
I develop an offline game, so the site (game) runs locally on the user’s computer using the file Protocol.
As far as I can see there are no problems with the files and they contain pointers:
//# sourceMappingURL=app.js.map
//# sourceMappingURL=chunk-vendors.js.map
I use sentry-webpack-plugin to upload files to sentry when building a project, I configuration looks like this:
new SentryCliPlugin({
release: pjson.version,
include: 'D:/Dev/lab/dist/js/',
ignoreFile: '.sentrycliignore',
ignore: ['node_modules', 'webpack.config.js'],
}),
My artifacts look so:
What did I do wrong?