Prevent html-minifier to remove placeholder comment in index.html template

このコミットが含まれているのは:
raeno 2018-12-13 23:35:27 +01:00
コミット c5042c07ef
1個のファイルの変更2行の追加1行の削除

ファイルの表示

@ -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
},