diff --git a/webpack.config.js b/webpack.config.js index eda4b7ec..f5ea963a 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -15,6 +15,7 @@ const isDev = env.NODE_ENV === 'development'; const dist = path.resolve(__dirname, 'dist'); const distDev = path.resolve(__dirname, 'dist-dev'); const devtool = isDev ? 'eval' : 'source-map'; + const notEmpty = (a) => a; const clean = (array) => array.filter(notEmpty);