Skip to content

Commit bdec033

Browse files
authored
fix(gatsby): Fix assets path for sourcemaps upload (#13592)
#13582 (comment) correctly identified that this path is messed up.
1 parent a8e5f59 commit bdec033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gatsby/gatsby-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ exports.onCreateWebpackConfig = ({ getConfig, actions }, options) => {
1212
sentryWebpackPlugin({
1313
sourcemaps: {
1414
// Only include files from the build output directory
15-
assets: ['public'],
15+
assets: ['./public/**'],
1616
// Ignore files that aren't users' source code related
1717
ignore: [
1818
'polyfill-*', // related to polyfills

0 commit comments

Comments
 (0)