You are sure it's not the copyright comments that persists. These should not be removed as it makes your product infringing.
Jun 2, 2016
6
Level 20
Elixir : Delete all comments in Js and CSS files
Hi,
How can I delete all comments in my css and js file and use maximum minification, I tried gulp --production but comment still in files.
Thanks
Level 20
With Laravel-elixir version 6 :
elixir.config.css.minifier.pluginOptions = {
keepSpecialComments: 0
};
Source : https://github.com/laravel/elixir/blob/master/src/Config.js#L188-L191 and https://github.com/jakubpawlowicz/clean-css#how-to-use-clean-css-api
Please or to participate in this conversation.