Reputation: 1974
Is any way to prevent the compiling of specific *.scss
files from assets/stylesheets
? I need to keep those files in assets
not public
directory
Upvotes: 0
Views: 22
Reputation: 2694
you can remove
*= require_tree .
line from application.scss and require only the files you want to compile.
Upvotes: 1