diff --git a/index.html b/index.html
index 3c9b0470..9fcae740 100644
--- a/index.html
+++ b/index.html
@@ -3,6 +3,7 @@
+
diff --git a/webpack.config.js b/webpack.config.js
index c1f42525..5f74d428 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -38,9 +38,8 @@ module.exports = {
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('styles.css', { allChunks: true }),
new CopyWebpackPlugin([
- {
- from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts'),
- },
+ { from: path.join(__dirname, 'styles/fonts'), to: path.join(__dirname, 'dist/fonts') },
+ { from: path.join(__dirname, './public/favicon.ico'), to: path.join(__dirname, 'dist/favicon.ico') }
], { copyUnmodified: true }
),
new StyleLintPlugin(),