webpack-source-map-support
v2.0.1
Published
A simple way to enable source-map support for your backend Webpack built applications
Downloads
8,810
Readme
Webpack Source Map Support
A simple way to enable source-map support for your backend Webpack built applications:
How to use:
Require it in your webpack.config.js
var WebpackSourceMapSupport = require("webpack-source-map-support");
Then just add it as a plugin:
plugins: [
new WebpackSourceMapSupport(),
// ... other plugins
]