Reputation: 371
I'm writing a webpack-react-typescript kit, and I've found that the source-map
can't direct to the source code.
It directs to the webpack-internal://src/App.tsx file
, this file has some webpack injection code.
Another computer has both the webpack://
and webpack-internal
domain, and the source map, which in the webpack://
domain can't direct to the current source code.
So what I want to know is:
webpack
and webpack-internal
?webpack://
and the other one doesn't?Upvotes: 32
Views: 6981
Reputation: 508
There's an error in chrome displaying source maps, which is the reason why it is suffixed like that.
The chrome team seems to be neutral to solving this https://twitter.com/ChromeDevTools/status/960972070711476224
Upvotes: 3