Sass and compass

Today I started working with a compass. I created a project using sass (which is at least what I entered in cmd).

This is my project, everything is fine. All files are good, etc. Made them .sass extensions.

File structure: http://prntscr.com/9m2i7s

But now (the problem arises here), when I try to enter some kind of sass code, it gives me an error: http://prntscr.com/9m2isq .

I already found out what the problem is. The project thinks I'm using scss (where the syntax is not equal to '; and' {}.

I don't mind working with scss instead of sass, but I find it strange. Because he made sass files for me, etc., and now he wants me to use scss.

Does anyone know how I could use sass instead of scss?

Yours faithfully!

-3
source share
1 answer

Your file extensions should be .scss for SASS, not .sass. Most likely, your precompiler is suffocating because it does not know what format you are feeding it to.

+1
source

All Articles