新的
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在哪里找到?是否有另一种方式来设置选项?
解决方法
config.rb特定于Compass项目,位于项目的根目录中.如果您使用的是Compass,则可以根据您的喜好指定css_dir,并记住/是Compass项目的根目录.
css_dir = "/assets/css"
如果您只使用Sass,则可以在编译时指定输出路径.
sass input.scss ../path/to/output.css