I am curious if what cssnano does to media queries is ok. In my css file, I have.
@media all and ( min-width: 600px) {}
After running my css through cssnano, it turns it to this >
@media ( min-width: 600px) {}
Is this safe to use in production? I can't seem to find anywhere where it says not having the "all" attribute makes the browser default to all or if not having it is a bad thing for sending the file to production?
I'm the author; yes, it's valid. I'll refer you to the original issue but in a nutshell:
https://github.com/ben-eb/cssnano/issues/215