availity-workflow icon indicating copy to clipboard operation
availity-workflow copied to clipboard

Investigate source-map-loader

Open robmcguinness opened this issue 7 years ago • 0 comments

https://github.com/webpack-contrib/source-map-loader

This loader is especially useful when using 3rd-party libraries having their own source maps. If not extracted and processed into the souce map of the webpack bundle, browsers may misinterpret source map data. source-map-loader allows webpack to maintain source map data continuity across libraries so ease of debugging is preserved.

{
  test: /\.js$/,
  use: ["source-map-loader"],
   enforce: "pre"
}

robmcguinness avatar Jun 20 '17 16:06 robmcguinness