捨棄註解
移除規則、選擇器和宣告內部及其周圍的註解。請注意,預設情況下,任何標有 !
的特殊註解都會被保留。
範例
輸入
/*! license */
.box {
/* Red headings */
color: red;
}
輸出
/*! license */
.box {
color: red;
}
移除規則、選擇器和宣告內部及其周圍的註解。請注意,預設情況下,任何標有 !
的特殊註解都會被保留。
/*! license */
.box {
/* Red headings */
color: red;
}
/*! license */
.box {
color: red;
}