Reputation: 9511
I want to get rid of the default css stylesheet app/assets/stylesheets/scaffold.css.scss but when I delete it and run the server the styles still seem to be there.
Upvotes: 2
Views: 2877
Reputation: 3421
Check out your public ( or public/assets ) folder. You may be serving a 'precompiled' version from public/stylesheets ( or public/assets ). I think you can rake assets:precompile
to update your file. Vaguely remember having to do something like this when I was working with some code that someone else had configured the project.
Upvotes: 4