diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js index 4ce0f3d..7bc8a8b 100644 --- a/webpack/webpack.config.js +++ b/webpack/webpack.config.js @@ -85,7 +85,5 @@ export default (options) => { }, }; - return strategies.reduce((conf, strategy) => { - return strategy(conf, options); - }, config); + return strategies.reduce((conf, strategy) => strategy(conf, options), config); };