Fran Martinez
Fran Martinez
I had the same issue upgrading to `sass-rails 6.0.0` and finally I fixed it using sprockets 4. * ruby 2.6.5 * rails 6.0.1 * sass-rails 6.0.0 * sprockets 4.0.0 There...
@epipheus * What version of `sprockets` are you using? I guess you are using sprockets version 4 * Did you remove the lines using `Rails.application.config.assets.precompile += [...]` in your `config/initializers/assets.rb`?...
You went much deeply with the error than me... AFAIK, although the segmentation fault occurs in _sassc-rails_, I suspect that the problem starts earlier in _sprockets_ and some kind of...
Adding precompile assets in _config/initializers/assets.rb_ is not a very good approach, because from Sprockets 4 we should add all dependencies in the _manifest.js_. I fix it in another way (by...
It is still not working