cssnext-loader
cssnext-loader copied to clipboard
how can i pass `safe` as an option to `cssnano`?
cssnano in non-safe mode is messing with my CSS
oh... cssnext's version of cssnano doesn't even support it yet...
I need this as well, it seems the z-indexes get "rebased" (yikes!)
safe option doesn't exist yet (in the version used by cssnext). Try using postcss + postcss-cssnext + cssnano directly (this will be the recommended version in a week or two ;) ). See https://github.com/cssnext/postcss-cssnext#readme
I did that, and it solved my problem! Thanks!