From 8a9b4d68482051e4d94148728e70ad12d5691c9c Mon Sep 17 00:00:00 2001 From: Hans Date: Tue, 21 Jul 2020 13:42:01 -0700 Subject: [PATCH] fix: add bootstrap chunk to candid HTML (#847) --- src/bootstrap/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/webpack.config.js b/src/bootstrap/webpack.config.js index 0754e1184e..8b9f6f0991 100644 --- a/src/bootstrap/webpack.config.js +++ b/src/bootstrap/webpack.config.js @@ -68,7 +68,7 @@ module.exports = { new HtmlWebpackPlugin({ template: 'src/candid/candid.html', filename: 'candid/index.html', - chunks: ['candid'], + chunks: ['bootstrap', 'candid'], }), new HtmlWebpackPlugin({ template: 'src/login.html',