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 ?
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 )
This is covered in section 4.1 of the Asset Pipeline Rails Guide
config.assets.precompile += ["*external/calendars*"]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With