I want to manage clientside assets using Bower which installs resources such as angular into
/vendors/assets/components/angular/angular.js
I reference these assets in the application.css.scss
file as follows:
/* ...
*= require bootstrap
*/
However while this works ok for development and the files are included ok, they're not getting picked up by sprockets for compilation in production on Heroku.
How can I instruct Sprockets to pick up and compile files from /vendor/assets/components/
?