mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
496 B
JavaScript
13 lines
496 B
JavaScript
if (Meteor.isServer) {
|
|
Meteor.AppCache.config({
|
|
// Turn off appcache on Safari. Apparently Safari 7's AppCache is totally
|
|
// busted. In particular, this fact combined with our "RELOAD_SAFETYBELT"
|
|
// strategy causes infinite reloads in Safari at times.
|
|
//
|
|
// See http://stackoverflow.com/questions/22888945/safari-7-application-cache-does-not-work
|
|
safari: false,
|
|
// ... and Firefox too. See eg https://github.com/meteor/meteor/issues/3248
|
|
firefox: false
|
|
});
|
|
}
|