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
|
I've create a compass project in VS2015 and it works fine until I try to use a compass mixin in which case it can't find it. I figured the problem was that i needed to import compass, but when I do that several things occur I get this error added to my css file:
I do see this message still whenever I compile, but I don't see any other files that need to be included in the project:
I don't see any .sass-cache directory created (and I can see hidden files). Thoughts? |
|
|
I decided to compile outside of VS and still got the same error, after some googling I learned it has to do with the sass-cache path being longer than 255 characters. By editing my config.rb file to set the path somewhere closer to the root of my drive I was able to get rid of the errors. Example: cache_path = 'C:\temp\sass\' |
|