What is the consistent difference between adding
//= require bootstrap-sprockets
and
//= require bootstrap
in application.js?
The documentation says:
bootstrap-sprockets provides separate Javascript Bootstrap files (e.g. alert.js or dropdown.js), while bootstrap provides a concatenated file containing all bootable javascripts
Does it offer better performance than another, or something else?
source share