0.4.5 • Published 5 years ago

f-error-overlay-webpack-plugin v0.4.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Error Overlay Webpack Plugin

Build Status version MIT License

Catch errors with style 💥✨

This plugin will 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 --save-dev

Usage

// webpack.config.js
const ErrorOverlayPlugin = require('error-overlay-webpack-plugin')

module.exports = {
  entry: 'main.js',
  output: {
    path: __dirname + '/dist',
    filename: 'bundle.js',
  },
  plugins: [new ErrorOverlayPlugin()],
  devtool: 'cheap-module-source-map', // 'eval' is not supported by error-overlay-webpack-plugin
}

License

MIT