front/general: fix stripping too much whitespace
This commit is contained in:
parent
81a51abbeb
commit
a7bc3c3d99
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ function bundleHtml(config) {
|
|||
fs.writeFileSync(
|
||||
'./public/index.htm',
|
||||
minify(
|
||||
finalHtml, {removeComments: true, collapseWhitespace: true}));
|
||||
finalHtml, {
|
||||
removeComments: true,
|
||||
collapseWhitespace: true,
|
||||
conservativeCollapse: true}));
|
||||
console.info('Bundled HTML');
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue