Is there a way to force Compass to use the Sass syntax instead of SCSS?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For new projects, run:
compass create path/to/project --syntax sassto generate .sass files using Sass syntax inside the sass folder. The
--syntaxoption and others are listed when you runcompass --help.For existing projects, add the following to your Compass config.rb:
preferred_syntax = :sassThat’s covered in the Compass configuration reference. And you’ll want to run your existing SCSS files through
sass-convertto generate new ones which use Sass syntax.