Package Exports
- error-overlay-webpack-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (error-overlay-webpack-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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-pluginUsage
// 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