Fixes "_b is not defined" error

This commit is contained in:
Henning Dieterichs 2023-11-15 16:37:57 +01:00 committed by Henning Dieterichs
parent 4cbf4fa126
commit e2670a457f

View file

@ -56,4 +56,8 @@ module.exports = {
plugins: [
new WarningsToErrorsPlugin()
],
optimization: {
// Without it, CI fails, which indicates a webpack minification bug.
minimize: false,
},
};