对于 Ruby on Rails,如何告诉 Sass 压缩生成的 CSS?

发布于 2024-10-25 14:20:33 字数 441 浏览 1 评论 0原文

下面的代码相当酷(在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-11-01 14:20:33

在您的Environment.rb(或您设置sass选项的任何位置)中,添加以下内容:

Sass::Plugin.options[:style] = :compressed

请参阅有关样式输出的sass文档 此处 和常规选项

In your Environment.rb (or wherever you're setting your sass options), add the following:

Sass::Plugin.options[:style] = :compressed

See the sass documentation on style ouput here and general options here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文