How to make Rails 3.1 use SASS (Over SCSS) as the default? How to make Rails 3.1 use SASS (Over SCSS) as the default? ruby ruby

How to make Rails 3.1 use SASS (Over SCSS) as the default?


For rails 3.1.rc4, you could set the config:

config.sass.preferred_syntax = :sass

in the application.rb file


I added the following to config/environments/development.rb:

config.sass.preferred_syntax = :sass

That did the trick.


Do require 'sass/plugin' and make sure it's at the bottom after your Application.initialize! call.