A simple way to enable source-map support for your backend Webpack built applications
npm install webpack-source-map-support
A simple way to enable source-map support for your backend Webpack built applications:
Require it in your webpack.config.js
``js`
var WebpackSourceMapSupport = require("webpack-source-map-support");
Then just add it as a plugin:
`js``
plugins: [
new WebpackSourceMapSupport(),
// ... other plugins
]