ruby的新手(我通常使用python / django),sass的新手。我只是尝试配置输出css目录选项。
此处的相关问题:changing the output directory of the resulting css file in compass webby 在这里:possible to change the sass compass output folder for different files
两者的答案都是改变config.rb。 config.rb在哪里找到?还有其他方法可以设置选项吗?
答案 0 :(得分:32)
您可以简单地使用:
sass --watch input-dir:output-dir
即:
sass --watch scss:css
答案 1 :(得分:14)
config.rb
特定于Compass项目,位于项目的根目录中。如果您使用的是Compass,则可以根据自己的喜好指定css_dir
,并牢记/
是Compass项目的根目录。
css_dir = "/assets/css"
如果您只使用Sass,则可以在编译时指定输出路径。
sass input.scss ../path/to/output.css
答案 2 :(得分:3)
在文本编辑器中打开config.rb并将“css_dir”从“stylesheets”更改为“/”(见下文)
http_path = "/"
css_dir = "/"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "javascripts"
答案 3 :(得分:0)
您还可以使用考拉应用程序(http://koala-app.com/)来更改css输出目标。我认为这是最简单的方法。 1.安装Koala应用程序 2.在Koala界面中运行并添加两个目录并参考。