evanw / evanw/node-source-map-support
Stack trace URls not clickable
- Vorherrschende Sprache
- JavaScript
- Sterne
- 2.2k
- Forks
- 223
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
As noted in https://github.com/petkaantonov/bluebird/issues/363, the `file:line-number` entries in the error stack trace generated by `souce-map-support` are not clickable in Chrome.
This is because `source-map-support` is generating:
```
Unhandled rejection Error: oops!
at Route.willTransitionTo [as onEnter] (components/outcomes-component.js:29:21)
```
Instead of:
```
Unhandled rejection Error: oops!
at Route.willTransitionTo [as onEnter] (http://localhost:8080/components/outcomes-component.js:29:21)
```
Prefixing the paths with the page origin should solve the problem.
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.