资产管道甚至不会尝试编译 SASS

发布于 2025-01-08 14:16:17 字数 556 浏览 0 评论 0原文

我的设置是相当简单的默认 Rails 3.2.1 设置。我的所有 .css.sass 文件都位于 /app/assets/stylesheets/ 中。我有 sass-rails '~>; 3.2.3':assets 组中的 gem。

没有 application.css,只有 main.css.sass (用于主布局)。

当我发出:

RAILS_ENV=production bundle exec rake assets:precompile

它编译我的coffeescripts和javascripts。日志中没有错误消息。就像它甚至不尝试编译 sass 文件一样。

main.css.sass 文件头如下所示:

//=depend_on "_globals.css.sass"
@import globals

_glocals.css.sass 存在于同一目录中。

My setup is fairly simple default rails 3.2.1 setup. All my .css.sass files are in /app/assets/stylesheets/. I have the sass-rails '~> 3.2.3' gem in :assets group.

There's no application.css, just main.css.sass (used for main layout).

When i issue:

RAILS_ENV=production bundle exec rake assets:precompile

it compiles my coffeescripts and javascripts. There are no error messages in the log. It's like it doesn't even try to compile sass files.

The main.css.sass file header looks like this:

//=depend_on "_globals.css.sass"
@import globals

The _glocals.css.sass exists in the same directory.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

第七度阳光i 2025-01-15 14:16:17

詹姆斯是对的,这是可能的解决方案之一。

将所有文件添加到一个清单文件的缺点是所有文件都将被预编译为单个文件 - 这并不总是您想要的。

就我而言,我需要单独的文件(每个布局一个文件)。

添加新清单文件的方法如下:

config.assets.precompile += %w( file1.css file2.css )

您不需要有实际的 file1.css,如果您有 file1.css.sass 它将被预编译。

James is right and it's one of the possible solutions.

The drawback of adding all files to one manifest file is that all will be precompiled to single file - which isn't always what you want.

In my case I needed separate files (one file for each layout).

Heres how to add new manifest files:

config.assets.precompile += %w( file1.css file2.css )

You don't need to have actual file1.css, if you have file1.css.sass it will be precompiled.

寒尘 2025-01-15 14:16:17

我认为 sass 需要一个清单文件,默认情况下,它是 Rails 3.2 应用程序的 application.css 。因此,创建 application.css 和 //= require 'main' 可能会解决您的问题。

I think sass needs a manifest file and by default that's application.css for a rails 3.2 app. So creating application.css and //= require 'main' might dove your problem.

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