2.0.1 • Published 7 years ago

webpack-source-map-support v2.0.1

Weekly downloads
3,787
License
ISC
Repository
github
Last release
7 years ago

Webpack Source Map Support

Build Status

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
]