-
Notifications
You must be signed in to change notification settings - Fork 34
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
Transformation removes of inner calc #64
Comments
Thanks for the report. Will try to fix so it outputs the correct transformation. |
/cc @andyjansson let's fix this issue and release new version of |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ccsnano
offers some configurable optimizations, likecalc
. Using webpack withoptimize-css-assets-webpack-plugin
for production builds results in transformingcalc(100vh - 5rem - calc(10rem + 100px)
) tocalc(100vh - 5rem - 10rem + 100px)
.This is not happening though when disabling
calc
optimizations on default presetTo be more specific I'm trying to solve this issue gatsbyjs/gatsby#9858
(Opening issue as mentioned in cssnano/cssnano#657 (comment))
The text was updated successfully, but these errors were encountered: