Ruby-on-rails – rails config.assets.precompile for specific sub folder

asset-pipelineruby-on-rails

Ive some very heavy external stylesheets in app/assets/stylesheets/external/calendars
I dont want to include the stylesheets into the application.css as they are used infrequently

Yet i want them precompiled.

Ho w do i use config.assets.precompile o selectively precompile all stylesheets nside this folder ?

Best Answer

You can simple write it like this:

config.assets.precompile += ['directory1/*', 'directory2/*', 'file.js']

Or use a cleaner syntax like this:

config.assets.precompile += %w( directory1/* directory2/* file.js )