对于 Ruby on Rails,如何告诉 Sass 压缩生成的 CSS?
下面的代码相当酷(在 Bash 上运行):
$ echo -e "div\n color: #ffffee" | sass -t compressed
div{color:#ffe}
相比之下:
$ echo -e "div\n color: #ffffee" | sass
div {
color: #ffffee; }
那么 -tcompressed
选项可以用于 Rails 项目吗——如何配置?
-t, --style NAME Output style. Can be nested (default), compact,
compressed, or expanded.
The following is quite cool (running on Bash):
$ echo -e "div\n color: #ffffee" | sass -t compressed
div{color:#ffe}
as compared to:
$ echo -e "div\n color: #ffffee" | sass
div {
color: #ffffee; }
so can the -t compressed
option be used for a Rails project -- how can it be configured?
-t, --style NAME Output style. Can be nested (default), compact,
compressed, or expanded.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的Environment.rb(或您设置sass选项的任何位置)中,添加以下内容:
请参阅有关样式输出的sass文档 此处 和常规选项
In your Environment.rb (or wherever you're setting your sass options), add the following:
See the sass documentation on style ouput here and general options here