在 RoR 3 中自动将 SASS 转换为 CSS,无需使用 sass --watch
我已经阅读了所有主题。 SASS + RoR,但我的小问题没有答案。我正在运行 Rails 3 并使用替代语法,没有 SCSS。 Haml gem 包含在项目中。我还应该配置什么来自动生成没有“sass --watch”的CSS文件?
提前致谢!
I've read all topics re. SASS + RoR, but there are no answers for my small question. I'm running Rails 3 and using alternate syntax, without SCSS. Haml gem included in the project. What else should I configure to have autogenerated css files without "sass --watch"?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需将
gem "haml"
放入 Gemfile 中,然后将 Sass 文件放入public/stylesheets/sass
中。You just need to put
gem "haml"
in your Gemfile, then put your Sass files inpublic/stylesheets/sass
.