让 SASS 与 Rails 3 配合使用
我正在尝试让 SASS 与 Rails 3 一起使用。 我已将 gem 'haml'
添加到我的 Gemfile
(并运行 bundle install
),并且添加了 styles.scss 到我的 public/
目录,但它似乎不起作用。有人可以帮我吗?谢谢!
I am trying to get SASS to work with Rails 3.
I have added gem 'haml'
to my Gemfile
(and ran bundle install
) and I have added a styles.scss
to my public/
directory, but it does not seem to be working. Can someone help me out? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,Sass 期望 sass/scss 文件放入
public/stylesheets/sass
中,然后将其公开编译为 css 文件。不过,您可以通过在配置中设置Sass::Plugin.options[:template_location]
来更改此路径。By default, Sass expects sass/scss files to go in
public/stylesheets/sass
, which are then compiled into css files in public. You can change this path by settingSass::Plugin.options[:template_location]
in your config, though.