- In NetBeans, choose File> Project Properties.
- In the dialog that opens, select the CSS preprocessor category.
- At the bottom of the Sass properties are the compiler options. Type
--compass
This fixed the issue you are asking me about. However, I ran into additional problems with Compass because it did not know the file paths. To overcome this, I created a config.rb file in the root of my project. This was to determine the full path to the project and directory names. Moreover, while working on a Windows machine, she was fussy about the direction of slashes and types of quotes.
project_path = 'c:\path\to\project' css_dir = "css" sass_dir = "sass" images_dir = "images" javascripts_dir = "js"
source share