File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,9 @@ that maps the minified code back to the original source:
25
25
26
26
::
27
27
28
- node_modules/uglify-js/bin/uglifyjs {input} \
29
- --source-map-root={relroot}/ \
30
- --source-map-url={name}.js.map \
31
- --source-map={relpath}/{name}.js.map \
32
- --source-map-include-sources \
33
- -o {output}
28
+ uglifyjs app.js \
29
+ -o app.min.js.map \
30
+ --source-map url=app.min.js.map,includeSources
34
31
35
32
36
33
Webpack
@@ -56,6 +53,7 @@ Webpack can be configured to output source maps by editing webpack.config.js.
56
53
}
57
54
};
58
55
56
+
59
57
SystemJS
60
58
~~~~~~~~
61
59
@@ -322,7 +320,7 @@ You must specify the active release in your Raven.js client configuration:
322
320
Raven .config (' your-dsn' , {
323
321
release: ' 1.2.3-beta'
324
322
}).install ();
325
-
323
+
326
324
Sentry needs this to associate ingested event data with the release and artifacts you've created via the API.
327
325
328
326
Verify your source maps are built correctly
You can’t perform that action at this time.
0 commit comments