Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,6 @@ new sourceMap.SourceMapConsumer(rawSourceMap).then(function (smc) {

If you have the same (incorrect) results locally as you do via Sentry, double-check your source map generation configuration.

## Verify your source files are not too large

For an individual artifact, Sentry accepts a max filesize of **40 MB**.

Often users hit this limit because they are transmitting source files at an interim build stage. For example, after your bundler has combined all your source files, but before minification has taken place. If possible, send the original source files.

## Verify artifacts are not gzipped

The Sentry API currently only works with source maps and source files that are uploaded as plain text (UTF-8 encoded). If the files are uploaded in a compressed format (for example, gzip), they will be not be interpreted correctly.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Finally, if your file is similar to:

then your uploaded artifact should be named `https://example.com/dist/maps/script.min.js.map` (or `~/dist/maps/script.min.js.map`).

###Verify Artifacts Are Uploaded Before Errors Occur
### Verify Artifacts Are Uploaded Before Errors Occur

Sentry expects that source code and source maps in a given release are uploaded to Sentry **before** errors occur in that release.

Expand Down Expand Up @@ -494,12 +494,6 @@ new sourceMap.SourceMapConsumer(rawSourceMap).then(function (smc) {

If you have the same (incorrect) results locally as you do via Sentry, double-check your source map generation configuration.

### Verify your source files are not too large

For an individual artifact, Sentry accepts a max filesize of **40 MB**.

Often users hit this limit because they are transmitting source files at an interim build stage. For example, after your bundler has combined all your source files, but before minification has taken place. If possible, send the original source files.

### Verify artifacts are not gzipped

The Sentry API currently only works with source maps and source files that are uploaded as plain text (UTF-8 encoded). If the files are uploaded in a compressed format (for example, gzip), they will be not be interpreted correctly.
Expand Down
6 changes: 0 additions & 6 deletions platform-includes/sourcemaps/troubleshooting/javascript.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,6 @@ new sourceMap.SourceMapConsumer(rawSourceMap).then(function (smc) {

If you have the same (incorrect) results locally as you do via Sentry, double-check your source map generation configuration.

### Verify Your Source Files Aren't Too Large

For an individual artifact, Sentry accepts a max filesize of **40 MB**.

Often users hit this limit because they are transmitting source files at an interim build stage. For example, after your bundler has combined all your source files, but before minification has taken place. If possible, send the original source files.

### Verify That Artifacts Aren't Gzipped

The Sentry API currently only works with source maps and source files that are uploaded as plain text (UTF-8 encoded). If the files are uploaded in a compressed format (for example, gzip), they will be not be interpreted correctly.
Expand Down