commit 1676cf72e2672b3d45c3376aa9c68123ed6e738d
parent 412bd196907db034e1794c785596b79cd2dafa8e
Author: Sergej Orlov <wladimirych@gmail.com>
Date: Wed, 4 Dec 2019 23:03:13 +0100
config: do not minify index.html
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js
@@ -56,7 +56,8 @@ const plugins = [
{ from: paths.appPublic, to: 'public' }
]),
new HtmlWebpackPlugin({
- template: paths.appIndexHtml
+ template: paths.appIndexHtml,
+ minify: false
}),
new MiniCssExtractPlugin({
filename: 'static/css/[name].[contenthash:8].css'