-
Notifications
You must be signed in to change notification settings - Fork 5
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
Unable to use polyfill in Heroku-deployed Rails app #7
Comments
The full error:
|
It would be helpful if you can post your |
Our I was able to re-produce this locally so I don't believe it's actually a Heroku issue. I think what's happening here is that somewhere in our project we have something still trying to speak to Another curious thing — we have this line in our config.assets.css_compressor = :sass When I remove that, everything works. (Though the final CSS is of course not minified.) |
I think you found the issue. Can you please try set it to config.assets.css_compressor = :sassc |
That was it! Everything is working as expected locally and on Heroku. Thank you for your help! 🎉 |
Hello!
Really excited about this library. We've been trying to get this in place within our Rails app and it seemingly is working fine locally and in CI — all our tests pass and Sprockets is happily using the Dart Sass. However when we attempt to deploy to Heroku we get this error during asset compiling:
I've found some existing mentions of that error that suggest it's a case of other gems trying to find
sassc
before it's ready, but I'm not sure why that's happening only on Heroku.The text was updated successfully, but these errors were encountered: