I noticed that locally we were getting errors about 7 different jquery-ui images, e.g. ActionController::RoutingError (No route matches [GET] "/public/ui-bg_highlight-soft_100_eeeeee_1x100.png")
These assets do actually exist within the jquery-ui file structure.
I have found that changing the url’s used within the jquery-ui framework css itself from “url(/images/ui-bg_highlight-soft_100_eeeeee_1x100.png” to “url(/assets/ui-bg_highlight-soft_100_eeeeee_1x100.png ” or “url(ui-bg_highlight-soft_100_eeeeee_1x100.png ” removes the error (though I had to also do a rake assets:precompile locally). However this seems like a bad approach and not the right thing to do.
What is the right approach to resolving these errors?
The final result was: