In config.rb I’ve set:
configure :build do
activate :asset_hash
set :css_dir, '//css.domain.com'
set :js_dir, '//js.domain.com'
set :images_dir, '//img.domain.com'
However, when I use stylesheet_link_tag or javascript_include_tag, it’s not including the fingerprinting hashes in the url. It only includes my CDN prefixes. What am I doing wrong?