5

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?

OldTroll
  • 773
  • 6
  • 22
leeand00
  • 25,510
  • 39
  • 140
  • 297

2 Answers2

8

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/"
Sam Murray-Sutton
  • 1,439
  • 1
  • 13
  • 22
0

I haven't tried it but this might work:

config.css_dir = File.join('output','css')
picardo
  • 24,530
  • 33
  • 104
  • 151