我想使用此模块https://www.npmjs.com/package/html-minifier
从node.js缩小我的html文件我有这段代码
// minify the html code
fse.readFile(filename, function(err, data) {
if (err) return console.error(err);
var result = minify(data.toString(), {
removeAttributeQuotes: false
});
console.log(result);
});
但是它记录的代码与原始文件相同。它并没有缩小它。有谁知道什么是错的?
由于
答案 0 :(得分:1)
默认情况下,几乎所有的html-minifier选项都被禁用。
尝试一些options:
{
collapseWhitespace: true,
removeComments: true,
removeEmptyAttributes: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true
}