Can anyone tell me the reasoning behind the date stamp on the request? The side affect is obviously cache busting, but this is hitting files from manifest (e.g. app.json) which we would prefer to cache until the next intentional update.
Any horror stories I should prepare for if we override it? Thanks.Code:uri = uri + ((uri.indexOf('?') == -1) ? '?' : '&') + Date.now();