Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove special comments in gulp clean-css?

How to remove special comments in gulp clean-css?

.pipe(cleancss({specialComments: 0}))

seems to have no effect

like image 861
Lukas Pierce Avatar asked Sep 19 '25 15:09

Lukas Pierce


1 Answers

Assuming you are using the latest version, it should be {level: {1: {specialComments: 0}}}

like image 118
Lukas Pierce Avatar answered Sep 23 '25 10:09

Lukas Pierce