From 6822200f2dec0ddb1a1c9ba960956864f48b83c5 Mon Sep 17 00:00:00 2001 From: Vladimir Metnev Date: Sun, 6 Aug 2017 00:46:36 +0300 Subject: [PATCH] feat(webpack_config/client): add to index.html independent of FaviconsPlugin --- src/common/index.ejs | 1 + webpack_config/client/webpack.prod.babel.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/common/index.ejs b/src/common/index.ejs index 0ec69f53..b4e756a6 100644 --- a/src/common/index.ejs +++ b/src/common/index.ejs @@ -10,6 +10,7 @@ + diff --git a/webpack_config/client/webpack.prod.babel.js b/webpack_config/client/webpack.prod.babel.js index 970b79bd..e085a4b2 100644 --- a/webpack_config/client/webpack.prod.babel.js +++ b/webpack_config/client/webpack.prod.babel.js @@ -178,6 +178,7 @@ base.plugins.push( new HtmlWebpackPlugin({ title: config.title, language: languageName, + theme_color: config.manifest.theme_color, // minify: true, template: path.resolve(config.srcCommonPath, 'index.ejs'), filename: path.resolve(base.output.path, 'index.html'),