2017-05-13 17 views
0

は、私は、このコードには、元のファイルと同じコードをログに記録しますがhtml-minifier npm moduleの使い方は?

   // 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); 
       }); 

を持って、このモジュールhttps://www.npmjs.com/package/html-minifier

を使ってNode.jsのから私のhtmlファイルを縮小化したいです。それはそれを小さくしませんでした。誰が何が間違っているのか分かりますか?

ありがとうございました

答えて

2

ほとんどのhtml-minifierオプションは、デフォルトでは無効になっています。

一部optionsで試してみてください:

{ 
    collapseWhitespace: true, 
    removeComments: true, 
    removeEmptyAttributes: true, 
    removeRedundantAttributes: true, 
    removeScriptTypeAttributes: true, 
    removeStyleLinkTypeAttributes: true 
} 
関連する問題