From c5042c07ef864e0fe1bd8728915fc2dfc191cbec Mon Sep 17 00:00:00 2001 From: raeno Date: Thu, 13 Dec 2018 23:35:27 +0100 Subject: [PATCH] Prevent html-minifier to remove placeholder comment in index.html template --- build/webpack.prod.conf.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/webpack.prod.conf.js b/build/webpack.prod.conf.js index c02f8e8626..9699f2212f 100644 --- a/build/webpack.prod.conf.js +++ b/build/webpack.prod.conf.js @@ -58,7 +58,8 @@ var webpackConfig = merge(baseWebpackConfig, { minify: { removeComments: true, collapseWhitespace: true, - removeAttributeQuotes: true + removeAttributeQuotes: true, + ignoreCustomComments: [/server-generated-meta/] // more options: // https://github.com/kangax/html-minifier#options-quick-reference },