Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 517 Bytes

readme.md

File metadata and controls

21 lines (15 loc) · 517 Bytes

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
]