我有标准的Rails 4.2 app,没有罗盘。
我发现了类似的问题但是使用罗盘。
最近在项目目录中出现了文件夹" .sass-cache" 所有我想要的东西,它只是将它移动到tmp。
在application.rb中尝试过:
module Sirius41
class Application < Rails::Application
...
config.sass.cache_location = Rails.root.join('tmp', '.sass-cache').to_s
ap config.sass
end
end
sass_options = {:cache_path => Rails.root.join('tmp', '.sass-cache').to_s}
但它不会改变缓存位置。
Rails sass配置值:
{
:preferred_syntax => :scss,
:cache => true,
:read_cache => true,
:line_comments => true,
:load_paths => [],
:logger => #<Sass::Rails::Logger:0x007f80d9148118 @log_level=:debug>,
:cache_location => "/home/anton/rubyprojects/sirius42/tmp/.sass-cache"
}