preloader
軟體工程

Rails 4改變預設產生stylesheets的副檔名從scss換成sass

創立一個新的Rails 4專案時,我想要改變stylesheets預設的副檔名scss,換成sass。

解決方法是

config/environments/development.rb 檔案中,加入這行內容即可:

config.sass.preferred_syntax = :sass

 

之後用rails g controller指令連帶產生的stylesheets都是以sass為副檔名。

 

參考資料:

http://stackoverflow.com/questions/6006360/how-to-make-rails-3-1-use-sass-over-scss-as-the-default

https://github.com/rails/sass-rails