Reputation: 6577
Is there a way to control the Meteor's auto refreshing when client was modified ? I have a method which is creating an image in the public/ directory and every time when a image was created the App on localhost is reloading which is a bit disturbing.
After creating an image this message showed up:
=> Client modified -- refreshing
To test I've just copy an image to the public/ directory and the server restarted.
Upvotes: 0
Views: 614
Reputation: 3226
This is a normal behavior. It is because you are running you meteor application in development mode.
Check if this is the case as shown here: How a meteor application knows if it's running on development, test or production environment?
You need to change it in your application global settings, or wait until you deploy it (and set it to production
).
Upvotes: 1