更改 Compass/Webby 中生成的 CSS 文件的输出目录?
我希望生成的 *.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
在我的 Webby SiteFile 配置中,但生成的 css 文件仍然输出到 默认目录(“样式表”)。我怎样才能改变这个?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将您想要使用的路径添加到 config.rb 文件中,如下所示;
我自己项目中的一个真实示例如下所示:
Try adding the path you wish to use to your config.rb file like this;
A real world example from my own project looks like this:
我还没有尝试过,但这可能有效:
I haven't tried it but this might work: