Reputation: 13843
I'm trying to set up a Compass project. Everything seem to work when I compile manually. However, when I'm using a File Watcher it saves it in the same directory as the SCSS file.
I just want the File Watcher to use my configuration file. Preferably on every project in the future.
Right: Structure when compiled manually
Wrong: Structure when compiled with the File Watcher
config.rb
css_dir = "css"
sass_dir = "css/sass"
output_style = :compressed
File Watcher
How can I make the File Watcher to respect the configuration?
Upvotes: 0
Views: 1551
Reputation: 13843
Solved!
compile $ProjectFileDir$
Upvotes: 2