How can I disable live reload in meteor?

meteor

Solution

You can disable HCP (hot code push) by adding this anywhere in your client code:

Meteor._reload.onMigrate(function() {
  return [false];
});

After doing that, you'll need to manually refresh the page in order to see any new changes.

Problem

I would like to turn off the automatic app refresh in meteor that occurs every time I change a file. How do I do this?

Original source