We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c02822b commit 5d6f64eCopy full SHA for 5d6f64e
packages/backpack-core/config/webpack.config.js
@@ -126,7 +126,9 @@ module.exports = (options) => {
126
}),
127
// The FriendlyErrorsWebpackPlugin (when combined with source-maps)
128
// gives Backpack its human-readable error messages.
129
- new FriendlyErrorsWebpackPlugin(),
+ new FriendlyErrorsWebpackPlugin({
130
+ clearConsole: options.env === 'development',
131
+ }),
132
// The NoEmitOnErrorsPlugin plugin prevents Webpack
133
// from printing out compile time stats to the console.
134
new webpack.NoEmitOnErrorsPlugin()
0 commit comments