如何让Rails不从app/assets/stylesheets导入每个文件?

Joh*_*ner 0 import ruby-on-rails sass stylesheet

在app/assets/stylesheets中,我有很多sass文件.在请求的页面中,导入app/assets/stylesheets中的每个文件(带有标记).我如何制作它,以便不是导入目录中的每个文件,而只导入我选择的文件?

注意:我正在运行Rails 4.1.2

Rub*_*cer 5

您更改了app/assets/stylesheets/application.css文件.

代替 *=require_tree .

加:

*=require './file1' 
*=require './file2'
...
Run Code Online (Sandbox Code Playgroud)

你不需要供应.css.css.scss