You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
view source code context obtained from stack traces in their original untransformed form, which is particularly useful for debugging minified code (e.g. UglifyJS), or transpiled code from a higher-level
9
9
language (e.g. TypeScript, ES6).
10
10
11
+
Specify the release in Raven.js
12
+
-------------------------------
13
+
14
+
If you are uploading sourcemap artifacts yourself, you must specify the release in your Raven.js client configuration.
15
+
Sentry will use the release name to associate digested event data with the files you've uploaded via the `releases API<https://docs.sentry.io/api/releases/>`, `sentry-cli<https://docs.sentry.io/learn/cli/>` or `sentry-webpack-plugin<https://github.com/getsentry/sentry-webpack-plugin>`.
16
+
This step is optional if you are hosting sourcemaps on the remote server.
17
+
18
+
.. code-block:: javascript
19
+
20
+
Raven.config('your-dsn', {
21
+
release:'1.2.3-beta'
22
+
}).install();
23
+
11
24
Generating a Source Map
12
25
-----------------------
13
26
@@ -340,19 +353,6 @@ Troubleshooting
340
353
341
354
Source maps can sometimes be tricky to get going. If you're having trouble, try the following tips.
342
355
343
-
Verify you have specified the release in your client config
0 commit comments