error-logger-webpack-plugin
v1.1.1
Published
Log webpack errors in readable format, suitable for navigation.
Downloads
1,017
Readme
Log webpack errors in readable format, suitable for navigation.
Install
npm install --save-dev error-logger-webpack-plugin
Usage
webpack.config.js
const ErrorLoggerPlugin = require('error-logger-webpack-plugin');
// ...
const config = {
// ...
plugins: [
new ErrorLoggerPlugin({verbose: false})
]
};
module.exports = config;
See the official webpack documentation for a deeper explanation of plugin usage.
Configuration
You can pass a hash of configuration options to ErrorLoggerPlugin
, such as:
verbose
:true | false
Iffalse
(default) try to minimize the error message.