Skip to content

Commit

Permalink
fix(gatsby): Fix assets path for sourcemaps upload (#13592)
Browse files Browse the repository at this point in the history
#13582 (comment)
correctly identified that this path is messed up.
  • Loading branch information
lforst authored Sep 6, 2024
1 parent a8e5f59 commit bdec033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/gatsby/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ exports.onCreateWebpackConfig = ({ getConfig, actions }, options) => {
sentryWebpackPlugin({
sourcemaps: {
// Only include files from the build output directory
assets: ['public'],
assets: ['./public/**'],
// Ignore files that aren't users' source code related
ignore: [
'polyfill-*', // related to polyfills
Expand Down

0 comments on commit bdec033

Please sign in to comment.