This thread looks to be a little on the old side and therefore may no longer be relevant. Please see if there is a newer thread on the subject and ensure you're using the most recent build of any software if your question regards a particular product.
This thread has been locked and is no longer accepting new posts, if you have a question regarding this topic please email us at support@mindscape.co.nz
|
Hi, I am implementing compass and Sass using Web Workbench. I have version 3.2.1144.23109 and am running it in through a solution in our Mvc project. I was able to set up a compass project and edit the config.rb file to point to the correct directory. I'm running this on a Window's desktop. Currently if I make a change to file.scss Sass will update and place the compiled file.css in the same directory. How do I initiate compass using your tool so that the compiled css will generate into the css folder? See file structure below Also, can I use Compass's @import "compass/utilities" feature right out of the gate? Content When I first set up compass, Visual Stuido automatically added the config file and folders to a different level. I moved them one level down into our Content directory. Is this an issue with the http_path perhaps? |
|
|
The config.rb file needs to remain in the root of the project (where it should have been originally added as part of setup), from there you can modify the sassdir and cssdir variables in that file to define where the Sass assets live and where the stylesheets should be generated. Any .scss files not residing in the sass_dir will be compiled using the standard Sass compiler rather than with Compass and the resulting .css files will (by default) end up alongside the .scss file - this is what will be occurring for you currently.
|
|