コメントを破棄
ルール、セレクタ、宣言の中と周辺のコメントを除去します。 ただし、!でマークされた特殊なコメントはデフォルトで保持されます。
例
入力
/*! license */
.box {
    /* Red headings */
    color: red;
}
出力
/*! license */
.box {
    color: red;
}
ルール、セレクタ、宣言の中と周辺のコメントを除去します。 ただし、!でマークされた特殊なコメントはデフォルトで保持されます。
/*! license */
.box {
    /* Red headings */
    color: red;
}
/*! license */
.box {
    color: red;
}