1

我正在尝试建立一个 Sinatra 项目以首次使用 Sass 和 Compass。我从https://github.com/chriseppstein/compass-sinatra下载了示例应用程序。App.rb 当前已正确配置为自动编译 .sass 文件,但是如何将其配置为查找 .scss 文件呢?

get '/stylesheets/:name.css' do
  content_type 'text/css', :charset => 'utf-8'
  sass(:"stylesheets/#{params[:name]}", Compass.sass_engine_options )
end
4

1 回答 1

0

So it turns out to be a simple configuration change from sass() to scss() in line 3

get '/stylesheets/:name.css' do
  content_type 'text/css', :charset => 'utf-8'
  scss(:"stylesheets/#{params[:name]}", Compass.sass_engine_options )
end
于 2012-12-11T00:16:51.680 回答