OpenCoderX
OpenCoderX

Reputation: 6318

How do I remove SASS from a rails project?

I have forked a rails project and found that is uses SASS, I want to remove SASS and write my css by hand.

Can i just delete the folder:public/stylesheets/sass? Remove the gem from the gemfiles, and then continue with the .css files that sass has generated?

Upvotes: 2

Views: 2754

Answers (2)

Zach Inglis
Zach Inglis

Reputation: 1257

Since there is already generated SASS, the method you suggest is the best. You do not want the SASS files overwriting your CSS.

Upvotes: 2

Joel AZEMAR
Joel AZEMAR

Reputation: 2526

The files with .css extension have no treated by gem sass, you can write your .css file think to change stylesheet_link_tag in layout for load your .css

Upvotes: 0

Related Questions