discardComments
移除规则、选择器和声明中的注释。请注意,默认情况下,任何用 !
标记的特殊注释都会保留。
示例
输入
/*! license */
.box {
/* Red headings */
color: red;
}
输出
/*! license */
.box {
color: red;
}
移除规则、选择器和声明中的注释。请注意,默认情况下,任何用 !
标记的特殊注释都会保留。
/*! license */
.box {
/* Red headings */
color: red;
}
/*! license */
.box {
color: red;
}