Webby-Compass Integration - 等效的 config.rb 文件?

发布于 2024-07-21 01:54:53 字数 800 浏览 8 评论 0 原文

Compass 截屏视频中,Chris Eppstein 在 23:08 开始编辑一个名为 config.json 的文件。 rb,在他的纯 Compass 项目中。 Chris 使用此文件使用 img_url() 函数在其图像中配置相对路径名(该函数必须未记录,因为我在 邮件列表在网站上。)。

我正在与 Webby 项目 /chriseppstein/compass/webby-integration" rel="nofollow noreferrer">Compass Integration,并且我在 Webby 项目中找不到 config.rb 文件。 我猜测我的项目根目录中的 SiteFile 文件会执行相同的操作,但我对此并不完全确定。

有谁知道 Webby/Compass 集成项目中与 config.rb 文件等效的文件是什么?

In the Compass screencast at 23:08 Chris Eppstein starts editing a file called config.rb, in his pure Compass project. Chris uses this file to configure relative path names in his images using the img_url() function (which must be undocumented as I can't find anything about it, in the mailing list or on the website.).

I'm working on a Webby project with Compass Integration, and I can't find a config.rb file in my Webby project. I'm guessing that the SiteFile file in the root directory of my project will do the same thing, but I'm not entirely certain about this.

Does anyone know what the equivalent to the config.rb file is in a Webby/Compass Integrated project?

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

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

发布评论

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

评论(1

烂柯人 2024-07-28 01:54:54

截屏视频很可能已经过时了。

要将指南针加载到您的 Webby 项目中,请使用以下选项设置您的站点文件:

require 'compass'

Compass.configuration do |config|
  config.project_path = File.dirname(__FILE__)
  config.sass_dir = File.join('src', 'stylesheets' )
end

Webby.site.sass_options.update(Compass.sass_engine_options)

来自 https: //github.com/Compass/compass/wiki/webby-integration

Screencast is most likely outdated.

To load compass into your Webby project, set up your Sitefile with the following options:

require 'compass'

Compass.configuration do |config|
  config.project_path = File.dirname(__FILE__)
  config.sass_dir = File.join('src', 'stylesheets' )
end

Webby.site.sass_options.update(Compass.sass_engine_options)

From https://github.com/Compass/compass/wiki/webby-integration

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