From bce69b2b0975d4e0580d95de404c44e20b10e75f Mon Sep 17 00:00:00 2001 From: Nicolas Gotchac Date: Wed, 21 Dec 2016 19:30:49 +0100 Subject: [PATCH] Fix dApps not loading (#3935) --- js/webpack/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/webpack/app.js b/js/webpack/app.js index 9044d470b..5e68835f8 100644 --- a/js/webpack/app.js +++ b/js/webpack/app.js @@ -200,7 +200,8 @@ module.exports = { new webpack.optimize.CommonsChunkPlugin({ filename: 'commons.ui.[hash:10].js', name: 'common.ui', - minChunks: 2 + minChunks: 2, + chunks: [ 'index', 'ui' ] }), DappsHTMLInjection