我想將我的application.css文件更改爲sass文件並使用@import來提取所有必需的文件。然後,我想將application.css.sass導入到頁面特定的sass文件中。這一切工作精美的發展,但是當我把它推到生產ENV在Heroku我得到這個錯誤:是否可以將application.css更改爲application.css.sass?
Error compiling CSS asset
Sass::SyntaxError: File to import not found or unreadable: application
application.css.sass:
@import "reset"
@import "typography"
@import "buttons"
@import "junk"
$yellow: #f0f090
$orange: #f89818
$blue1: #184898
$blue2: #4888c8
body
background: ...
...
/* all the rest of the app-wide styling */
uniquePage.css.sass :
@import "application"
/*page specific styling*/
然後在需要的東西不同application.css頁我叫
!!! 5
%html
%header
= stylesheet_link_tag "uniquePage"
那麼我想的問題是,如何使不同的清單文件爲不同的CSS集? –