Skip to content

Provide better external url for sourcemap content #13761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/platforms/javascript/guides/electron/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ It is currently not possible to send events from native code (such as a C++ exte

## Dealing with Minified Source Code

The Electron SDK supports [Source Maps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/). If you upload source maps in addition to your minified files that data becomes available in Sentry. For more information see [_Source Maps_](/platforms/javascript/guides/electron/#source-maps).
The Electron SDK supports [Source Maps](https://web.dev/articles/source-maps). If you upload source maps in addition to your minified files that data becomes available in Sentry. For more information see [_Source Maps_](/platforms/javascript/guides/electron/#source-maps).

## Native

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/javascript/guides/node/legacy-sdk/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ For more information, see [Recording Breadcrumbs](/platforms/javascript/guides/n

## Dealing with Minified Source Code

Raven and Sentry support [Source Maps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/). If you provide source maps in addition to your minified files that data becomes available in Sentry. For more information see [Source Maps](/platforms/javascript/guides/node/legacy-sdk/sourcemaps/).
Raven and Sentry support [Source Maps](https://web.dev/articles/source-maps). If you provide source maps in addition to your minified files that data becomes available in Sentry. For more information see [Source Maps](/platforms/javascript/guides/node/legacy-sdk/sourcemaps/).

## Middleware and Integrations

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/javascript/guides/node/legacy-sdk/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,6 @@ var Raven2 = new Raven.Client();

## Dealing with Minified Source Code

Raven and Sentry support [Source Maps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/).
Raven and Sentry support [Source Maps](https://web.dev/articles/source-maps).

We have provided some instructions to creating Source Maps over at [Source Maps](/platforms/javascript/guides/node/legacy-sdk/sourcemaps/).
2 changes: 1 addition & 1 deletion docs/platforms/javascript/legacy-sdk/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ You can also record your own breadcrumbs. For more information, see [Recording B

## Dealing with Minified Source Code

Raven and Sentry support [Source Maps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/). If you provide source maps in addition to your minified files that data becomes available in Sentry. For more information see [Source Maps](/platforms/javascript/legacy-sdk/sourcemaps/).
Raven and Sentry support [Source Maps](https://web.dev/articles/source-maps). If you provide source maps in addition to your minified files that data becomes available in Sentry. For more information see [Source Maps](/platforms/javascript/legacy-sdk/sourcemaps/).

## Browser Compatibility

Expand Down
5 changes: 2 additions & 3 deletions docs/platforms/javascript/legacy-sdk/usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,9 @@ Raven.isSetup();

## Dealing with Minified Source Code

Raven and Sentry support [Source Maps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps/).
Raven and Sentry support [Source Maps](https://web.dev/articles/source-maps).

For more information, please read the [Source Map
docs](/platforms/javascript/legacy-sdk/sourcemaps/).
For more information, please read the [Source Map docs](/platforms/javascript/legacy-sdk/sourcemaps/).

You can use [Source Map Validator](https://sourcemaps.io/) to help verify that things are correct.

Expand Down