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:
- What's the difference between
webpack
andwebpack-internal
? - Why does one computer have
webpack://
and the other one doesn't?