Pavel
Pavel

Reputation: 1974

Rails: do not allow compile assets

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

Answers (1)

Alper Karapınar
Alper Karapınar

Reputation: 2694

you can remove

 *= require_tree .

line from application.scss and require only the files you want to compile.

Upvotes: 1

Related Questions