You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mode: config.prod ? 'production' : 'development',// temp workaround till strange rendering issues with full `production` mode are switched on in Webpack
223
+
mode: config.prod ? 'production' : 'development',
220
224
optimization: {
221
225
minimize: config.prod,
222
226
occurrenceOrder: true,
@@ -250,6 +254,7 @@ module.exports = function() {
250
254
: [],
251
255
},
252
256
plugins: [
257
+
newFriendlyErrorsWebpackPlugin(),
253
258
newCopyPlugin(config.copy),
254
259
newNoEmitPlugin(['css/pattern-lab.js']),
255
260
],
@@ -329,7 +334,7 @@ module.exports = function() {
329
334
plugins: [
330
335
// clear out the buildDir on every fresh Webpack build
0 commit comments