Error Overlay Webpack Plugin
Catch errors with style ๐ฅโจ
This plugin display an error overlay in your application, it is the same error overlay used in create-react-app.
- ๐ฆ Webpack 4 support
- ๐ฅ Elegant stack trace
- ๐ Click to open error line in editor
npm install error-overlay-webpack-plugin
Usage
// webpack.config.js
const ErrorOverlayPlugin = require('webpack-error-overlay-plugin')
module.exports = {
entry: 'main.js',
output: {
path: __dirname + '/dist',
filename: 'bundle.js',
},
plugins: [new ErrorOverlayPlugin()],
}License
MIT
