Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS What is the easiest way to convert an existing project to Sass? Re: What is the easiest way to convert an existing project to Sass?

#143036
tronboyd
Member

There are [generators](http://css2sass.heroku.com/) out there that people have made, but I’m not sure if I trust them. The best way to get current projects onto LESS or Sass is to remember that all CSS is valid LESS (or SCSS, in this case) and then translate your stylesheets as you work on them, adding in your own mixins or variables when needed. Give yourself time to make a good transition. Rushing it will most likely result in many headaches.

Above all: test first, THEN deploy to production. :)