更改 Compass/Webby 中生成的 CSS 文件的输出目录?

发布于 2024-08-08 23:22:29 字数 562 浏览 9 评论 0 原文

我希望生成的 *.css 文件位于 output/css 目录而不是 stylesheets 目录中。我该怎么做呢?

我已经尝试过:

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

/SiteFile

在我的 Webby SiteFile 配置中,但生成的 css 文件仍然输出到 默认目录(“样式表”)。我怎样才能改变这个?

I want my resulting *.css file to land in the output/css directory instead of the stylesheets directory. How would I go about doing this?

I've already tried:

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

<proj-root>/SiteFile

In my Webby SiteFile configuration, but the resulting css file is still output into the default directory ("stylesheets"). How can I change this?

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

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

发布评论

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

评论(2

温折酒 2024-08-15 23:22:29

尝试将您想要使用的路径添加到 config.rb 文件中,如下所示;

css_dir = "output/folder/css/"

我自己项目中的一个真实示例如下所示:

css_dir = "public/stylesheets/compiled/"

Try adding the path you wish to use to your config.rb file like this;

css_dir = "output/folder/css/"

A real world example from my own project looks like this:

css_dir = "public/stylesheets/compiled/"
病毒体 2024-08-15 23:22:29

我还没有尝试过,但这可能有效:

config.css_dir = File.join('output','css')

I haven't tried it but this might work:

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