Kristen Grote
Kristen Grote

Reputation: 2777

Compass Not Creating CSS Files

When I run compass compile, the operation runs successfully, but no CSS files are created in my CSS directory. This is my folder structure:

css
images
src
 -config.rb
 -screen.scss
 -overrides.css

And my config.rb file:

http_path = "./"
css_dir = "../css"
sass_dir = "./"
images_dir = "../images"
javascripts_dir = "../javascripts"
line_comments = false

Upvotes: 0

Views: 574

Answers (1)

Daisi
Daisi

Reputation: 2418

The problem should be with the directories you've specified for your assets i.e css_dir, sass_dir, images_dir and javascripts_dir

The values for the directories are all relative to the http-path.

With the current value for the css_dir in your code, Compass should be generating the css outside your project folder. You paths should look more like

http_path = '/'
css_dir = 'css'
sass_dir = 'sass' // I suggest you create a folder for all your sass files
images_dir = 'images'
javascripts_dir = 'javascripts'

Upvotes: 2

Related Questions