-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rtl plugin minifies source css #18
Comments
I am encountering the same issue. It seems like the plugin modify the original file too changing all the The only workaround I could find is setting the |
Yes, we never needed minify and it took us by surprise that the default is on (we minify stuff in our own pipeline). In fact since cssnano (unless configured differently) will modify keyframe names and this totally broke our css outputs... |
Minification could be helpful in general, except for what happens with new WebpackRTLPlugin({
minify: {// Very important option to be passed to "cssnano" or it will override all z-index to be only '3' !
zindex: false
}
}) |
Are there any updates on this? It seems like there are several problems with the webpack integration of this plugin. For example, I cannot imagine that it is expected behavior that the source file is manipulated (minified) by the RTL plugin. In addition, also source-maps are not working (see: #25). Thanks for any feedback. |
I might be wrong, but it seems to me that the plugin minifes both files (the original and the rtlified version). Is this the desired behaviour?
The text was updated successfully, but these errors were encountered: