-
Notifications
You must be signed in to change notification settings - Fork 53
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
Minification bug #163
Comments
I had a minification bug that (after much headache) I tracked down to Opera vendor prefixes. They break any rules that follow them in the document. You may want to check your css for the |
Is there any other way rather than tracking that vendor prefix? I've noticed that production environment minifies the file while a local environment doesn't, maybe there's a way to set the same rule to production environment that hasn't been documented? |
AFAIK, you can force production not to minify in the package's configuration file. That doesn't seem like a great solution though if you can simply patch the CSS. The Opera problem lies within the minification library itself (https://github.com/nitra/PhpMin). Specifically in this area: https://github.com/nitra/PhpMin/blob/master/CssMin/CssMin.php#L2989. Notice, there are no |
Hey there.
I have some stylesheets that just dont work if they are minified, my guess is that some file messed up the whole minification. Is there an option to only specify concatenation and leave the file not minified?
The text was updated successfully, but these errors were encountered: