I want to change the cache headers sent from a bundle request. Currently it is varying by User-Agent
but I don't want it to, is there a way to change the headers sent by a bundle request?
After a quick look in the System.Web.Optimization
assembly I can see the headers get set in Bundle.SetHeaders
which is a private static function so I don't think its possible although I would love to be proven wrong.
public,max-age=31536000
instead ofprivate
, and to also add an Etag header. It looks like both of these are not currently possible? – Egoist