Rails:SASS 未创建 CSS 文件

发布于 2024-09-11 21:17:30 字数 559 浏览 6 评论 0原文

SASS 没有创建 CSS 文件,但 HAML 工作得很好。

我运行了以下命令:

$: sass --watch scss:stylesheets
[true, ["scss", "stylesheets"]]

我的 ma​​in.scss 文件包含以下内容:

/* main.scss */

body {
    background: #000000;
}

main.css 文件永远不会生成。所以我运行了以下命令:

$: sass --update
NoMethodError: undefined method `split' for nil:NilClass
  Use --trace for backtrace.

什么给出了?

  • Running Rails 3
  • 我尝试过 hamlhaml-edge

SASS is not creating the CSS files, but HAML is working just fine.

I ran the following command:

$: sass --watch scss:stylesheets
[true, ["scss", "stylesheets"]]

My main.scss file contains the following:

/* main.scss */

body {
    background: #000000;
}

The main.css file never gets generated. So I ran the following:

$: sass --update
NoMethodError: undefined method `split' for nil:NilClass
  Use --trace for backtrace.

What gives?

  • Running Rails 3
  • I've tried both haml and haml-edge

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

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

发布评论

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

评论(2

往事随风而去 2024-09-18 21:17:30

这是一个已知错误。修复程序可能会在今晚或明天晚上发布。

This is a known bug. A fix will probably be released tonight or tomorrow night.

末が日狂欢 2024-09-18 21:17:30

我不确定这是否是您的问题(当我尝试运行它时,我收到了不同的错误),但是您在发布的代码中缺少 SCSS 属性列表周围的括号,因此代码 不应该正确解析。

I'm not sure if this is your issue (I get a different error from you when I try to run it), but you're missing the brackets around your SCSS property list in the code you posted, so that code shouldn't parse correctly.

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