From 0e2cb9b189128fede004d456a4d8d1740ecfe5a9 Mon Sep 17 00:00:00 2001 From: Steven Evans Date: Mon, 9 Jul 2018 09:50:23 -0400 Subject: [PATCH] [chore] Enabled Webpack "usedExports" optimization --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index beaf8ef8d..44b5a9cf5 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -43,7 +43,7 @@ module.exports = (env, argv) => ({ occurrenceOrder: true, sideEffects: true, providedExports: true, - usedExports: false, + usedExports: true, concatenateModules: false, namedModules: false, namedChunks: false,