I have a Sinatra app with an application.scss file which @import
s all of the rest of the app's SCSS files. It uses the Sinatra asset pack. In the layout.erb file I have:
<%= css :application %>
Sinatra changes the URL of the compiled CSS file every time the application.scss file changes. Unfortunately, it doesn't exhibit this cache-busting behavior when any of the @import
ed files change. Is there a way to fix this in Sinatra?